web-dev-qa-db-ja.com

ファン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)
3
gdantimi

それは予期しない何かで解決されるようです:

Sudo service i8kmon stop

またはより良い(再起動後も持続するはずです)

Sudo systemctl disable i8kmon.service

おそらく設定が間違っているかわからないのですが、オフにするとファンが正常に動作し始め、オン/オフのサイクルはなくなりました

0
gdantimi

ファンの構成に何を使用していますか? i8kutilslm-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を実行して、温度に基づいてファンの制御を開始できます。再起動すると実行が停止するため、スタートアッププログラムに追加することをお勧めします。

これは私にとってはうまくいきましたが、ハードウェアの問題も経験している可能性があります。故障したファンなので、YMMV。

1
Dylan Parry