
Ubuntu日本語フォーラム

ログインしていません。
目的としてはfancontrolでファンの制御をすることなのですがうまくいかず、lm-sensorでセンサーを確認してみたところ、ファン回転数が読み取れないことがわかりました。
電圧等は読み取れますが、ファンの回転数だけが読み取れないのですが、何が原因かわかるでしょうか。
ちなみにUbuntu14.04でマザーボードはH67DE3を使っています。
sensorsの結果はこの通りです。
###############################
$ sensors
coretemp-isa-0000
Adapter: ISA adapter
Physical id 0: +38.0°C (high = +80.0°C, crit = +85.0°C)
Core 0: +33.0°C (high = +80.0°C, crit = +85.0°C)
Core 1: +34.0°C (high = +80.0°C, crit = +85.0°C)
radeon-pci-0100
Adapter: PCI adapter
temp1: +67.5°C (crit = +120.0°C, hyst = +90.0°C)
nct6776-isa-0290
Adapter: ISA adapter
Vcore: +0.95 V (min = +0.00 V, max = +1.74 V)
in1: +1.87 V (min = +0.00 V, max = +0.00 V) ALARM
AVCC: +3.41 V (min = +2.98 V, max = +3.63 V)
+3.3V: +3.41 V (min = +2.98 V, max = +3.63 V)
in4: +0.11 V (min = +0.00 V, max = +0.00 V) ALARM
in5: +1.73 V (min = +0.00 V, max = +0.00 V) ALARM
in6: +1.12 V (min = +0.00 V, max = +0.00 V) ALARM
3VSB: +3.44 V (min = +2.98 V, max = +3.63 V)
Vbat: +3.26 V (min = +2.70 V, max = +3.63 V)
fan1: 0 RPM (min = 0 RPM)
fan2: 0 RPM (min = 0 RPM)
fan3: 0 RPM (min = 0 RPM)
fan4: 0 RPM (min = 0 RPM)
fan5: 0 RPM (min = 0 RPM)
SYSTIN: +36.0°C (high = +0.0°C, hyst = +0.0°C) ALARM sensor = thermistor
CPUTIN: +35.0°C (high = +80.0°C, hyst = +75.0°C) sensor = thermistor
AUXTIN: +36.5°C (high = +80.0°C, hyst = +75.0°C) sensor = thermistor
PECI Agent 0: +38.0°C (high = +80.0°C, hyst = +75.0°C)
(crit = +85.0°C)
PCH_CHIP_TEMP: +0.0°C
PCH_CPU_TEMP: +0.0°C
PCH_MCH_TEMP: +0.0°C
intrusion0: ALARM
intrusion1: OK
beep_enable: disabled
###############################
オフライン
自己解決しました。
下記ページにあるASRock 970 Extreme4と同じ方法でファンコントロールをイネーブルにできました。
https://github.com/groeck/nct6775/blob/master/README.ASRock
自分の場合ファン2の制御がしたかったので、
# isaset -y -f 0x2e 0x87
# isaset -y -f 0x2e 0x87
# isaset -y 0x2e 0x2f 0x7 0x8
# isaset -y 0x2e 0x2f 0xf0 0xb2
# isaset -y 0x2e 0x2f 0xf1 0xf2
を実行した後、lm-sensorを実行するとfan2の回転数が読み取れました。
これによりfancontrolの設定もエラー無く完了しました。
オフライン