把控制权交给“thinkfan”

把控制权交给“thinkfan”

我正在努力思凡设置并运行我的联想 x250。我已经安装了它,但我不确定它是否控制风扇速度。如果我运行:

$ cat /proc/acpi/ibm/fan

在终端,我得到:

status: enabled

但我认为在thinkfan控制事物时它应该被“禁用”。如果我运行:

$ sudo thinkfan -n

我得到:

WARNING: Using default fan control in /proc/acpi/ibm/fan

我如何将风扇的控制权移交给thinkfan(我可以在哪里调整设定点)?

答案1

首先确保风扇已启用,默认情况下,它未启用:

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) 表示风扇级别 5 在 64 到 68 度之间

7级,最高,67度以上

service thinkfan restart

并使用以下命令检查消息:

journalctl -f

相关内容