web-dev-qa-db-ja.com

Linux:プログラムでファンを止める方法は?

私のシステムは、M/B(ga-890gpa-ud3h)ヘッダーを介して接続された3線式ケースファンに対応する/ sys/class/hwmon/hwmon0/device/pwm(2,3)に255未満の値を書き込んでも反応しません。 。アイデアは http://www.thinkwiki.org/wiki/How_to_control_fan_speed から取られました

ls /sys/class/hwmon/hwmon0/device/

alarms      fan1_min    fan3_beep   fan5_min   in0_min    in2_alarm  in3_beep   in4_beep   in5_input  in6_max    in7_max    power/                   pwm2_auto_channels_temp  pwm3_freq    temp1_min    temp2_min    temp3_min
cpu0_vid    fan2_alarm  fan3_input  hwmon/     in1_alarm  in2_beep   in3_input  in4_input  in5_max    in6_min    in7_min    pwm1                     pwm2_enable              subsystem@   temp1_type   temp2_type   temp3_type
driver@     fan2_beep   fan3_min    in0_alarm  in1_beep   in2_input  in3_label  in4_max    in5_min    in7_alarm  in8_input  pwm1_auto_channels_temp  pwm2_freq                temp1_alarm  temp2_alarm  temp3_alarm  uevent
fan1_alarm  fan2_input  fan5_alarm  in0_beep   in1_input  in2_max    in3_max    in4_min    in6_alarm  in7_beep   in8_label  pwm1_enable              pwm3                     temp1_beep   temp2_beep   temp3_beep   vrm
fan1_beep   fan2_min    fan5_beep   in0_input  in1_max    in2_min    in3_min    in5_alarm  in6_beep   in7_input  modalias   pwm1_freq                pwm3_auto_channels_temp  temp1_input  temp2_input  temp3_input
fan1_input  fan3_alarm  fan5_input  in0_max    in1_min    in3_alarm  in4_alarm  in5_beep   in6_input  in7_label  name       pwm2                     pwm3_enable              temp1_max    temp2_max    temp3_max

それは確かに実際の速度を示しています:

cat /sys/class/hwmon/hwmon0/device/fan5_input 
5769

しかし、fanX_inputへの書き込みを拒否します:permissiondenied(rootの場合でも)。

その他の仕様:カーネル2.6.38.4、sensors出力は次のとおりです。

it8720-isa-0228
Adapter: ISA adapter

ファン制御用のデーモンは実行していませんが、CPUのカーネル内ガバナーによって速度が設定されている可能性があります。ハードウェアのトリックを行わずに、この条件下でファンを停止するにはどうすればよいですか?

Upd:pwmconfigの出力の一部:

デバイス:

Found the following devices:
   hwmon0/device is it8720
   hwmon1/device is k10temp

Found the following PWM controls:
   hwmon0/device/pwm1
   hwmon0/device/pwm2
hwmon0/device/pwm2 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
   hwmon0/device/pwm3
hwmon0/device/pwm3 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

テスト:

Warning!!! This program will stop your fans, one at a time,
for approximately 5 seconds each!!!
This may cause your processor temperature to rise!!!
If you do not want to do this hit control-C now!!!
Hit return to continue: 

Testing pwm control hwmon0/device/pwm1 ...
  hwmon0/device/fan1_input ... speed was 4326 now 2136
    It appears that fan hwmon0/device/fan1_input
    is controlled by pwm hwmon0/device/pwm1
Would you like to generate a detailed correlation (y)? y

これはCPUファンを停止させていました。そして:

hwmon0/device/fan3_input ... speed was 1997 now 1997
    no correlation
  hwmon0/device/fan5_input ... speed was 5720 now 5720
    no correlation

Testing pwm control hwmon0/device/pwm2 ...
  hwmon0/device/fan1_input ... speed was 4326 now 4383
    no correlation
  hwmon0/device/fan3_input ... speed was 1997 now 1997
    no correlation
  hwmon0/device/fan5_input ... speed was 5720 now 5720
    no correlation

No correlations
3
kagali-san

マザーボード上のファンが接続されているヘッダーは、ファンのスロットリングをサポートしていない場合があります。私は6つのファンヘッダーを備えたマザーボードを持っています。そのうちの4つは速度制御をサポートし、他の2つはサポートしていません。

2
Will Gunn

OK、3ピンヘッダーは回転を完全に制御できないようですが、それを報告するだけです: http://www.overclock.net/air-cooling/727121-motherboard-only-controls-2-を参照) 4-fans.html

0
kagali-san