ファンの RPM が 0 サイクルに低下するのはなぜですか?

ファンの RPM が 0 サイクルに低下するのはなぜですか?

Dell E6430にUbuntu Gnome 16.04をインストールし、次のコマンドを使用しています。

watch sensors

温度(約 70 度)にもかかわらず、ファンが最大速度で回転し、2 ~ 3 秒後に 0 に低下していることがわかります。

しばらく安定している場合もありますが、ほとんどの場合、オン/オフを繰り返しています。

ファンコントロールを設定してみましたが、何も変化がなかったようです。

フォーラムで読んだところ、他にも同じ問題を抱えている人がいて、ハードウェアや BIOS などに問題があると主張していたが、実際の解決策は見つからなかった。

Windows で試してみましたが、再現できないようです。

私のセンサーのコマンド:

dell_smm-virtual-0
Adapter: Virtual device
Processor Fan: 2972 RPM
CPU:            +62.0°C  
Ambient:        +49.0°C  
SODIMM:         +45.0°C  
GPU:            +55.0°C  

acpitz-virtual-0
Adapter: Virtual device
temp1:        +40.5°C  (crit = +107.0°C)

coretemp-isa-0000
Adapter: ISA adapter
Physical id 0:  +65.0°C  (high = +87.0°C, crit = +105.0°C)
Core 0:         +65.0°C  (high = +87.0°C, crit = +105.0°C)
Core 1:         +60.0°C  (high = +87.0°C, crit = +105.0°C)

答え1

ファンの設定に何を使用していますか? と をインストールし、次の設定ファイルを に追加することで良い結果が得られi8kutilsましlm-sensors/etc/i8kmon.conf

# Run as daemon, override with --daemon option
set config(daemon)      0

# Automatic fan control, override with --auto option
set config(auto)        1

# Report status on stdout, override with --verbose option
set config(verbose) 1

# Status check timeout (seconds), override with --timeout option
set config(timeout) 20

# Temperature thresholds: {fan_speeds low_ac high_ac low_batt high_batt}
set config(0)   {{-1 0}  -1  40  -1  40}
set config(1)   {{-1 1}  30  60  30  60}
set config(2)   {{-1 2}  53  128  53  128}

# For computer with 2 fans, use a variant of this instead:
# Temperature thresholds: {fan_speeds low_ac high_ac low_batt high_batt}
# set config(0) {{-1 0}  -1  52  -1  65}
# set config(1) {{-1 1}  41  66  55  75}
# set config(2) {{-1 1}  55  80  65  85}
# set config(3) {{-1 2}  70 128  75 128}

# end of file

/usr/bin/i8kmon -d -a次に、温度に基づいてファンの制御を開始するために実行できます。再起動すると実行が停止するので、スタートアップ プログラムに追加することをお勧めします。

これは私の場合はうまくいきましたが、ハードウェアの問題(ファンの故障など)も発生している可能性があります。

答え2

予想外の方法で解決したようです:

sudo service i8kmon stop

またはそれ以上(再起動後も持続するはずです)

sudo systemctl disable i8kmon.service

おそらく設定が間違っているか、わかりませんが、電源を切るとファンが正常に動作し始め、オン/オフサイクルがなくなりました。

関連情報