如何解决 Linux Mint 17 Cinnamon 中的风扇速度问题?

如何解决 Linux Mint 17 Cinnamon 中的风扇速度问题?

我最近在 Acer Aspire E1-570 上安装了 Linux Mint 17 Cinnamon,而不是 Windows 8。

http://www.acer.com.au/ac/en/AU/content/model/NX.MEPSA.004

一切似乎都工作正常,但我注意到我的风扇似乎很多时候都在高速运转。

有人可以告诉我与该发行版相关的明确的故障排除步骤吗?

此外,如果我可以运行一些命令来获取解决问题所需的相关系统信息,那么了解这些命令也很棒。

编辑

如果相关的话,屏幕亮度小程序控制不起作用,所以我按照下面的步骤操作 - 也许这改变了一些东西?

me@computer ~ $ ls /sys/class/backlight/
acpi_video0  intel_backlight
sudo touch /usr/share/X11/xorg.conf.d/20-intel.conf
sudo gedit /usr/share/X11/xorg.conf.d/20-intel.conf

and then added this to the file:

Section "Device"
Identifier  "card0"
Driver      "intel"
Option      "Backlight"  "intel_backlight"
BusID       "PCI:0:2:0"EndSection

http://itsfoss.com/fix-brightness-ubuntu-1310/

Sensors其他帖子中似乎也提到了,所以我将其输入到命令中,这就是输出:

me@computer ~ $ sensors
coretemp-isa-0000
Adapter: ISA adapter
Physical id 0:  +44.0°C  (high = +87.0°C, crit = +105.0°C)
Core 0:         +44.0°C  (high = +87.0°C, crit = +105.0°C)
Core 1:         +44.0°C  (high = +87.0°C, crit = +105.0°C)

更多系统信息

me@computer ~ $ cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
ondemand

me@computer ~ $ inxi -Fxz
System:    Host: computer Kernel: 3.13.0-24-generic x86_64 (64 bit, gcc: 4.8.2) 

在此输入图像描述 右键单击 > “在新选项卡中打开图片”以全尺寸查看图片。

答案1

我刚刚在不同的计算机型号上遇到了类似的困难,也许以下内容可以帮助您,但在您的计算机上可能会有所不同。

您可以检查风扇的冷却装置状态。该脚本将显示冷却设备的名称、类型和状态。

for a in /sys/devices/virtual/thermal/cooling_device*
do 
    echo $(basename $a) $(cat $a/type) $(cat $a/cur_state)
done

在我的电脑上:

cooling_device0 Fan 0
cooling_device1 Fan 0
cooling_device2 Fan 0
cooling_device3 Fan 1
cooling_device4 Fan 1
cooling_device5 Processor 0
cooling_device6 Processor 0
cooling_device7 LCD 0

事实上,我的电脑上只有一个风扇。cooling_device* Fan同一粉丝的不同vue 。

这就是它在我的计算机上的工作方式:

当 /sys/class/thermal/cooling_device4/cur_state设置为1风扇管理已激活。另一个/sys/class/thermal/cooling_device[0123]/cur_stat会看到它们的值自动从01取决于温度。
例如在 60°C 时cooling_device3/cur_statet 设置为1

当 /sys/class/thermal/cooling_device4/cur_state设置为0热管理停止。风扇停止,当计算机达到 80°C 时,风扇高速运行,直到计算机冷却至 50°C 以下。

这是我激活热管理的操作:

echo 1 > /sys/class/thermal/cooling_device4/cur_state

强迫1对另一个cooling_devices* Fan没有影响。

我将其放入服务中,以便在启动时和“挂起/恢复”后激活它。

  • 不要强制状态非范设备我不知道它能做什么。
  • 如果你改变一个扇子状态,监测不同活动水平下的温度

答案2

首先安装自动cpufreq。 auto-cpufreq 它是一个适用于 Linux 的自动 CPU 速度和功率优化器,基于对笔记本电脑电池状态、CPU 使用情况、CPU 温度和系统负载的主动监控。

git clone https://github.com/AdnanHodzic/auto-cpufreq.git

cd auto-cpufreq 

sudo ./auto-cpufreq-installer

然后运行auto-cpufreq --help以获得更多帮助,但默认配置应该足够了,然后启动守护程序,systemctl enable --now auto-cpufreq.service启动守护程序后重新启动,您的风扇现在应该很低示例图像

相关内容