Fan speed control (简体中文)

Fancontrol, 是lm_sensors的一部分,可以被用于控制CPU以及其他风扇的转速。本文阐述了如何安装,配置它。

翻译状态:本文是 Fan speed control翻译。上次翻译日期:2017-08-31。如果英文版本有所更改,则您可以帮助同步翻译。

对于一些戴尔笔记本,可以由i8kutils代替。

传感器驱动

许多较新主板的传感器仍然未受到Kernel内建驱动的支持,检查一下表格 lm-sensors devices 来确认驱动支持情况。

我们不建议使用lm_sensors.service 来加载驱动模块,请手动将配置文件放入/etc/modules-load.d/load_these.conf,使用 lm_sensors.service 可能导致设备地址在每次启动时变化。 在 /etc/conf.d/lm_sensors 你可以找到模块, 如果没有,请以root运行sensors-detect使用默认设置。 在modules-load.d一行行地加入。参见

lm-sensors

设置 lm_sensors

如果不能正确地显示风扇转速,你可能需要增加风扇参数。

增加 fan_div

Sensors输出的第一行是被主板用来读取温度和电压的chipset。

在 中创建文件:

coretemp-isa-替换为chipset的名称,并把改成CPU风扇的编号。

保存文件,并以root身份运行:

# sensors -s

那将会重载配置文件。

再次运行 ,看一下有没有读出RPM的值。如果没有,把_div后面的数增加到8, 16, 或32。重复尝试!

Configuration

注意: Advanced users may want to skip this section and write /etc/fancontrol on their own, which also saves them from hearing all of the fans at full speed.

Once sensors is properly configured, run to test and configure speed control. Follow the instructions in to set up basic speeds. The default configuration options should create a new file, .

Tweaking

Users wishing more more control may need to tweak the generated configuration. Here is a sample configuration file:

INTERVAL=10
DEVPATH=hwmon0=devices/platform/coretemp.0 hwmon2=devices/platform/w83627ehf.656
DEVNAME=hwmon0=coretemp hwmon2=w83627dhg
FCTEMPS=hwmon0/device/pwm1=hwmon0/device/temp1_input
FCFANS= hwmon0/device/pwm1=hwmon0/device/fan1_input
MINTEMP=hwmon0/device/pwm1=20
MAXTEMP=hwmon0/device/pwm1=55
MINSTART=hwmon0/device/pwm1=150
MINSTOP=hwmon0/device/pwm1=105
  • : how often the daemon should poll CPU temps and adjust fan speeds. INTERVAL is in seconds.

The rest of the configuration file is split into (at least) two values per configuration option. Each configuration option first points to a PWM device which is written to which sets the fan speed. The second "field" is the actual value to set. This allows monitoring and controlling multiple fans and temperatures.

  • : The temperature input device to read for CPU temperature. The above example corresponds to /sys/class/hwmon/hwmon0/device/temp1_input.
  • : The current fan speed, which can be read (like the temperature) in
  • : The temperature (°C) at which to SHUT OFF the CPU fan. Efficient CPUs often will not need a fan while idling. Be sure to set this to a temperature that you know is safe. Setting this to 0 is not recommended and may ruin your hardware!
  • : The temperature (°C) at which to spin the fan at its MAXIMUM speed. This should be probably be set to perhaps 10 or 20 degrees (°C) below your CPU's critical/shutdown temperature. Setting it closer to MINTEMP will result in higher fan speeds overall.
  • : The PWM value at which your fan stops spinning. Each fan is a little different. Power tweakers can echo different values (between 0 and 255) to and then watch the CPU fan. When the CPU fan stops, use this value.
  • : The PWM value at which your fan starts to spin again. This is often a higher value than MINSTOP as more voltage is required to overcome inertia.

There are also two settings fancontrol needs to verify the configuration file is still up to date. The lines start with the setting name and a equality sign, followed by groups of hwmon-class-device=setting, seperated by spaces. You need to specify each setting for each hwmon class device you use anywhere in the config, or fancontrol will not work.

  • : Sets the physical device. You can determine this by executing the command
readlink -f /sys/class/hwmon/hwmon-device/device | sed -e 's/^\/sys\///'
  • : Sets the name of the device. Try:
$ sed -e 's/[[:space:]=]/_/g' /sys/class/hwmon/hwmon-device/device/name
提示: Not only the DEVPATH may change on reboot due to different timing of module loading, but also e.g. the temperature sensor paths (hwmon0/device/temp1_input becomes hwmon0/temp1_input). This usually happens on a kernel update. Check the system log to find out which is the troublemaker:
# systemctl status fancontrol.service
and correct your config file accordingly.

fancontrol

Try to run fancontrol:

# /usr/bin/fancontrol

A properly configured setup will not error out and will take control of system fans. Users should hear system fans slowing shortly after executing this command.

To make fancontrol start automatically on every boot, enable .

i8kutils

provides an alternative method of controlling the fan speed on some Dell Inspiron and Latitude laptops.  It makes use of the  interface provided by the  driver (formerly ).  Results will vary depending on the exact model of laptop.

Dependencies

tcl must be installed in order to run as a background service (using the option). To run the X11 desktop applet, is required as well.

Configuration

By default, only monitors the CPU temperature and fan speed passively. To enable its fan speed control, either run it with the option or enable the option permanently in :

set config(auto)       1

The temperature points at which the fan changes speed can be adjusted in the same configuration file. Only three fans speeds are supported (high, low, and off). Look for a section similar to the following:

set config(0)  {{0 0}  -1  55  -1  55}
set config(1)  {{1 1}  45  75  45  75}
set config(2)  {{2 2}  65 128  65 128}

This example starts the fan at low speed when the CPU temperature reaches 55 °C, switching to high speed at 75 °C. The fan will switch back to low speed once the temperature drops to 65 °C, and turns off completely at 45 °C.

Disable BIOS fan speed control

It may be necessary to turn off control of the fan speed by the BIOS to prevent it from "fighting" with . On some laptops, this can be done using the smm utility. This utility is extremely dangerous as it writes directly to an I/O port to invoke the processor's System Management Mode. Use it at your own risk.

smm must be compiled and installed manually. Locate the file in the source and compile it:

$ gcc -m32 -o smm smm.c

To disable BIOS fan speed control, run (as root):

# ./smm 30a3

To enable it again:

# ./smm 31a3

Installation as a service

can be started automatically as a systemd service using a unit file similar to the following:
This article is issued from Archlinux. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.