我目前正在我的电脑上设置风扇控制。当我运行pwmconfig时,它说我没有工作风扇传感器:
de@dust ~ $ sudo pwmconfig
# pwmconfig revision 6166 (2013-05-01)
This program will search your sensors for pulse width modulation (pwm)
controls, and test each one to see if it controls a fan on
your motherboard. Note that many motherboards do not have pwm
circuitry installed, even if your sensor chip supports pwm.
We will attempt to briefly stop each fan using the pwm controls.
The program will attempt to restore each fan to full speed
after testing. However, it is ** very important ** that you
physically verify that the fans have been to full speed
after the program has completed.
Found the following devices:
hwmon0 is acpitz
hwmon1 is radeon
hwmon2 is coretemp
hwmon3 is asus
Found the following PWM controls:
hwmon1/pwm1 current value: 71
hwmon1/pwm1 is currently setup for automatic speed control.
In general, automatic mode is preferred over manual mode, as
it is more efficient and it reacts faster. Are you sure that
you want to setup this output for manual control? (n) Y
Giving the fans some time to reach full speed...
Found the following fan sensors:
hwmon3/fan1_input current speed: 0 ... skipping!
There are no working fan sensors, all readings are 0.
Make sure you have a 3-wire fan connected.
You may also need to increase the fan divisors.
See doc/fan-divisors for more information.我不知道为什么它认为我没有工作风扇传感器,因为我没有问题使用风扇控制器在Windows..?
发布于 2022-06-24 07:37:19
如果出现错误-没有工作风扇传感器,则在使用pwmconfig生成配置文件时,所有读数都为0,
打开第一个控制台并执行:
watch -n 1 "echo 2 > /sys/devices/platform/kernel_module/hwmon/hwmon[[:print:]]*/pwm1_enable"如果您使用asus_fan内核模块并有第二个风扇,则在第二个控制台中:
watch -n 1 "echo 2 > /sys/devices/platform/kernel_module/hwmon/hwmon[[:print:]]*/pwm2_enable"最后,在第三个控制台中:
sudo pwmconfighttps://askubuntu.com/questions/914962
复制相似问题