我已经安装了最新版本的 Ubuntu(20.04),但我的风扇出现了问题:即使我的 CPU 温度很低,我的风扇也在以最大速度运转 :(
我用来sensors
检查温度和风扇速度:
# sensors
coretemp-isa-0000
Adapter: ISA adapter
Package id 0: +35.0°C (high = +100.0°C, crit = +100.0°C)
Core 0: +32.0°C (high = +100.0°C, crit = +100.0°C)
Core 1: +34.0°C (high = +100.0°C, crit = +100.0°C)
Core 2: +34.0°C (high = +100.0°C, crit = +100.0°C)
Core 3: +32.0°C (high = +100.0°C, crit = +100.0°C)
Core 4: +32.0°C (high = +100.0°C, crit = +100.0°C)
Core 5: +33.0°C (high = +100.0°C, crit = +100.0°C)
dell_smm-virtual-0
Adapter: Virtual device
fan1: 4975 RPM
fan2: 5132 RPM
BAT0-acpi-0
Adapter: ACPI interface
in0: 10.78 V
curr1: 1.34 A
iwlwifi_1-virtual-0
Adapter: Virtual device
temp1: +32.0°C
pch_cannonlake-virtual-0
Adapter: Virtual device
temp1: +35.0°C
acpitz-acpi-0
Adapter: ACPI interface
temp1: +25.0°C (crit = +107.0°C)
我尝试使用以下方法手动降低速度i8k
:
# i8kfan 1 1
2 2
我能听到风扇转速减慢然后再次加速(1 或 2 秒后)。
谁能帮我 ?
答案1
在全新安装的Ubuntu 20.04
华硕笔记本电脑上也存在同样的问题。
当我进入Software & Updates
->时,我以为这是一个未选定的驱动程序问题Additional Drivers
。它被标记为continue using a manually installed driver
,其他的都被禁用了。
然后我跟着这个https://askubuntu.com/a/1032365/829928选择驱动程序的说明:
$ ubuntu-drivers devices # list drivers that are available to be installed from the default Ubuntu repositories
$ sudo apt install [xserver-xorg-video-nouveau]
我xserver-xorg-video-nouveau
为我的系统安装了它然后rebooting
解决了风扇速度问题。
也许这种方法也适用于您的系统。
编辑: 几天后问题又出现了。尝试了$ ubuntu-drivers list
几次$ sudo apt install nvidia-driver-440
也没有效果。
答案2
我在运行Ubuntu 18.04 LTS。所以我相信它也应该可以在 20.04 上运行。
您所做的是正确的,i8kfan
但它很快就会停止,因为 BIOS 将接管风扇的控制。
因此,我找到了一种解决方法(感谢 GitHub repohttps://github.com/TomFreudenberg/dell-bios-fan-control) 通过覆盖 BIOS 控制。
- 将 repo 克隆到你的机器。
- 运行
Makefile
(只需make
在目录中输入终端Makefile
)。 - 这将创建一个可执行文件
dell-bios-fan-control
。 - 您可以按照其 GitHub Repo README 中所示使用此文件(您需要传递
0
参数以禁用 BIOS 控制,然后尝试i8kfan
像之前一样运行)。
这对我有用,但我不能保证在所有情况下都一样。