我正努力让思想扇建立起来,并在我的联想X 250上工作。我安装了它,但我不确定它是否控制风扇的速度。如果我跑:
$ cat /proc/acpi/ibm/fan在终点站,我得到:
status: enabled但我的印象是,当thinkfan控制事情时,它应该是“禁用”的。如果我跑:
$ sudo thinkfan -n我得到:
WARNING: Using default fan control in /proc/acpi/ibm/fan如何将风扇的控制交给thinkfan (在那里我可以调整设置点)?
发布于 2020-09-16 15:29:50
首先,确保启用了风扇,默认情况下,它不启用:
echo "options thinkpad_acpi experimental=1 fan_control=1" >/etc/modprobe.d/thinkpad_acpi.conf重新启动模块:
sudo rmmod thinkpad_acpi ; sudo modprobe thinkpad_acpi然后编辑thinkfan配置文件。
vi /etc/thinkfan.conf我的设置是这样的:
tp_fan /proc/acpi/ibm/fan
tp_thermal /proc/acpi/ibm/thermal (0, 10, 15, 2, 10, 5, 0, 3, 0, 3)
(0, 0, 41)
(1, 40, 51)
(2, 50, 56)
(3, 55, 61)
(4, 60, 65)
(5, 64, 68)
(7, 67, 32767)数字是温度等级,例如> (5,64,68)是指风扇在64到68度之间的5级。
7级,最高,在67度以上
service thinkfan restart并通过以下方式查看消息:
journalctl -f
https://askubuntu.com/questions/1219876
复制相似问题