lm-sensors没有检测到我的风扇

sensors-detect完美地检测我的系统:

# sensors-detect revision 6209 (2014-01-14 22:51:58 +0100) # System: Acer Aspire E1-572 [V2.14] (laptop) # Board: Acer EA50_HW 

它检测到英特尔数字热传感器(驱动器coretemp)。

但是当我运行sensors它没有显示任何风扇,所以当我运行pwmconfig时它说There are no pwm-capable sensor modules installed.

 coretemp-isa-0000 Adapter: ISA adapter Physical id 0: +46.0 C (high = +100.0 C, crit = +100.0 C) Core 0: +46.0 C (high = +100.0 C, crit = +100.0 C) Core 1: +43.0 C (high = +100.0 C, crit = +100.0 C) 

问题是,这个风扇甚至打开和关闭,它的噪音令我感到不安。 所以我想更好地配置它。

如果没有人可以帮助我,我可能会最终将主机上的风扇断开。

并非所有系统都与pwmconfig风扇实用程序(大多数英特尔系统)兼容。 我不建议断开你的风扇,除非你想要炒你的CPU或让自己买一台新的笔记本电脑。 解决导致CPU温度过高以至于风扇始终全力运行的问题会更便宜。

首先,通过打开终端并执行以下命令来安装opensource intel驱动程序下载程序:

 sudo apt-get update wget https://download.01.org/gfx/ubuntu/14.04/main/pool/main/i/intel-linux-graphics-installer/intel-linux-graphics-installer_1.0.6-0intel1_amd64.deb sudo chmod +x intel-linux-graphics-installer_1.0.6-0intel1_amd64.deb sudo dpkg -i intel-linux-graphics-installer_1.0.6-0intel1_amd64.deb sudo apt-get -f install sudo intel-linux-graphics-installer 

有关opensource intel项目的更多信息,请点击此处。

和这里

按照提示重新启动以使更改生效。

现在,安装TLP并正确配置它。 打开终端并键入以下命令:

 sudo apt-get update sudo apt-get remove laptop-mode-tools sudo add-apt-repository ppa:linrunner/tlp sudo apt-get update sudo apt-get install tlp tlp-rdw 

您必须先配置并启用TLP才能运行。 使用您喜欢的文本编辑器编辑配置文件/ etc / default / tlp,然后在第一次运行以下命令启动它(它会在您第一次启动后自动启动)。

 sudo service tlp start 

有关TLP的更多信息,请点击此处 。

接下来,安装thermald:

 sudo apt-get install thermald 

更多信息可以在这里找到

此外,安装cpufreq缩放指示器以手动限制您的CPU:

 sudo apt-get install indicator-cpufreq 

运行命令:

 indicator-cpufreq 

启动它并单击短划线指示器图标以选择CPU频率或模式。

最后,安装psensor以实时显示临时值:

 sudo apt-get install psensor 

完成所有这些更改后,您应该会看到风扇使用率和总体温度显着降低。