我已经在 Dell E6430 上安装了 Ubuntu Gnome 16.04,并且正在使用以下命令
watch sensors
我注意到,尽管温度很高(大约 70 度),风扇仍以最大速度运转,并在 2-3 秒后降至 0。
有时它会稳定一段时间,但大多数时候都是开启/关闭状态。
我尝试设置风扇控制但似乎没有改变任何东西。
我读到论坛上有人遇到了同样的问题,认为是硬件、BIOS 等等的问题,但没有真正的解决方案。
我在 Windows 上尝试过但似乎无法在那里重现它。
我的传感器命令:
dell_smm-virtual-0
Adapter: Virtual device
Processor Fan: 2972 RPM
CPU: +62.0°C
Ambient: +49.0°C
SODIMM: +45.0°C
GPU: +55.0°C
acpitz-virtual-0
Adapter: Virtual device
temp1: +40.5°C (crit = +107.0°C)
coretemp-isa-0000
Adapter: ISA adapter
Physical id 0: +65.0°C (high = +87.0°C, crit = +105.0°C)
Core 0: +65.0°C (high = +87.0°C, crit = +105.0°C)
Core 1: +60.0°C (high = +87.0°C, crit = +105.0°C)
答案1
您使用什么来配置风扇?通过安装i8kutils
和lm-sensors
,然后将以下配置文件添加到,我获得了良好的效果/etc/i8kmon.conf
:
# Run as daemon, override with --daemon option
set config(daemon) 0
# Automatic fan control, override with --auto option
set config(auto) 1
# Report status on stdout, override with --verbose option
set config(verbose) 1
# Status check timeout (seconds), override with --timeout option
set config(timeout) 20
# Temperature thresholds: {fan_speeds low_ac high_ac low_batt high_batt}
set config(0) {{-1 0} -1 40 -1 40}
set config(1) {{-1 1} 30 60 30 60}
set config(2) {{-1 2} 53 128 53 128}
# For computer with 2 fans, use a variant of this instead:
# Temperature thresholds: {fan_speeds low_ac high_ac low_batt high_batt}
# set config(0) {{-1 0} -1 52 -1 65}
# set config(1) {{-1 1} 41 66 55 75}
# set config(2) {{-1 1} 55 80 65 85}
# set config(3) {{-1 2} 70 128 75 128}
# end of file
然后您可以运行/usr/bin/i8kmon -d -a
以根据温度开始控制风扇。它会在重启时停止运行,因此我建议将其添加到您的启动程序中。
这对我有用,但您可能还遇到了硬件问题,即风扇故障,所以 YMMV。
答案2
似乎用一些意想不到的方法解决了这个问题:
sudo service i8kmon stop
或者更好(重启后应该仍然存在)
sudo systemctl disable i8kmon.service
可能是配置错误或者我不知道,但当我关闭它时,风扇开始正常运行,不再有开/关循环