web-dev-qa-db-ja.com

Ubuntu 14.04の大音量ファン

私は数日前にUbuntu 13.10からUbuntu 14.04にアップグレードしたDell Latitude E5420ラップトップを持っています。

ファンの新しい迷惑な動作に気付かずにはいられません。1〜2秒ごとに繰り返し大声になり、オフになり、再びオンになります。集中CPUプロセスは実行されません。

これに対する修正はありますか?

わかりましたので、これらのloudの瞬間に温度が少し上昇するようです。急速に摂氏50度から60度になり、その後冷却して50に戻ります。

こんなに頻繁に起こることはありませんでした...

騒々しい:

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

coretemp-isa-0000
Adapter: ISA adapter
Physical id 0:  +55.0°C  (high = +80.0°C, crit = +85.0°C)
Core 0:         +55.0°C  (high = +80.0°C, crit = +85.0°C)
Core 1:         +54.0°C  (high = +80.0°C, crit = +85.0°C)

i8k-virtual-0
Adapter: Virtual device
Right Fan:   121350 RPM
CPU:          +59.0°C  

静か:

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

coretemp-isa-0000
Adapter: ISA adapter
Physical id 0:  +49.0°C  (high = +80.0°C, crit = +85.0°C)
Core 0:         +51.0°C  (high = +80.0°C, crit = +85.0°C)
Core 1:         +51.0°C  (high = +80.0°C, crit = +85.0°C)

i8k-virtual-0
Adapter: Virtual device
Right Fan:      0 RPM
CPU:          +50.0°C  

このユーザー 、同様のノートブックモデル(Dell Latitude E6400)で、まったく同じ問題が発生しています。

編集2.今、ファンはの間、オンとオフを切り替えていますが、温度は摂氏42度で安定しています:

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

coretemp-isa-0000
Adapter: ISA adapter
Physical id 0:  +41.0°C  (high = +80.0°C, crit = +85.0°C)
Core 0:         +40.0°C  (high = +80.0°C, crit = +85.0°C)
Core 1:         +40.0°C  (high = +80.0°C, crit = +85.0°C)

i8k-virtual-0
Adapter: Virtual device
Right Fan:   102210 RPM
CPU:          +42.0°C 

編集3. Dell BIOSを最新バージョン(5から14)に更新しましたが、利用できませんでした。 fwtsでファンテストを実行すると、1つのテストが失敗し、5つのテストが成功します。しかし、より詳細な出力を取得することはできません...

$ fwts fan
Running 1 tests, results appended to results.log
Test: Simple fan tests.                                                     
  Test fan status.                                        5 passed, 1 failed             
  Load system, check CPU fan status. 
4
Ricky Robinson

少し調べて調べたところ、妥当な解決策が見つかりました。2.
1交換できるファンがありますが、サイレントです。 2 i8k Dellファン/ cpuドライバーに続くWebサイトを掘り下げました。 http://www.cyberciti.biz/faq/controlling-Dell-fan-speeds-temperature-on-ubuntu-debian-linux/

これを14.04 LTSでテストしましたが、Inspirion 15 3521があるので動作します。

これをインストールした後、これを読んでください/etc/init.d/i8kmonサービスはi8kmonをデーモンモードで起動することに注意してください。したがって、i8kfanで速度を設定することは無意味です。なぜなら、デーモンはシステム温度ごとにオンザフライで独自の値で速度をオーバーライドするからです。

これが役立つことを願っています。

ああ、i8kctl fan fanコマンドは、左右のファンの新しいファン状態を指定する2つのオプションパラメーターを受け入れることができます。状態パラメーターは次のとおりです。

0 : turn the fan off (not recommended)
1 : set low speed
2 : set high speed
- : don't change the state of this fan

たとえば、次のコマンドは、左側のファン(通常はCPUによって使用される)を高速に設定し、右側を変更しないままにします:$ i8kctl fan 2 -

1
Virusboy

この回答 から:

  1. おそらく、ファンは常に高速で回転していることに気付くでしょう。 「i8kutils」パッケージを使用してファンの速度を管理する方法を説明するいくつかのWebサイトを見つけましたが、ソリューションはうまく機能しているようです。例: http://ubuntuforums.org/showthread.php?t=842775 ファン設定を有効にするためにモジュールをロードする必要がありました:Sudo modprobe i8k

私の構成ファイル(/etc/i8kmon.conf)は次のようになります。

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

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

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

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

# Temperature thresholds: {fan_speeds low_ac high_ac low_batt high_batt}
set config(0) {{0 0} -1 55 -1 55}
set config(1) {{0 1} 50 60 55 65}
set config(2) {{1 1} 55 80 60 85}
set config(3) {{2 2} 70 128 75 128}

# end of file

私は、コア設定に注意を払い、ファンの設定が正常であること、およびそれらが正しいように見えることを確認しています。この目的を達成するために:

Sudo apt-get install lm-sensors
Sudo sensors-detect

続いて、ハードウェアセンサーインジケーターのインストール、

Sudo add-apt-repository ppa:alexmurray/indicator-sensors
Sudo apt-get update
Sudo apt-get install indicator-sensors

ハードウェアの参照と比較のために、lspciからの出力を次に示します。

00:00.0 Host bridge: Intel Corporation Ivy Bridge DRAM Controller (rev 09)
00:01.0 PCI bridge: Intel Corporation Ivy Bridge PCI Express Root Port (rev 09)
00:02.0 VGA compatible controller: Intel Corporation Ivy Bridge Graphics Controller (rev 09)
00:14.0 USB controller: Intel Corporation Panther Point USB xHCI Host Controller (rev 04)
00:16.0 Communication controller: Intel Corporation Panther Point MEI Controller #1 (rev 04)
00:1a.0 USB controller: Intel Corporation Panther Point USB Enhanced Host Controller #2 (rev 04)
00:1b.0 Audio device: Intel Corporation Panther Point High Definition Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation Panther Point PCI Express Root Port 1 (rev c4)
00:1c.1 PCI bridge: Intel Corporation Panther Point PCI Express Root Port 2 (rev c4)
00:1d.0 USB controller: Intel Corporation Panther Point USB Enhanced Host Controller #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation Panther Point LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation Panther Point 6 port SATA Controller [AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation Panther Point SMBus Controller (rev 04)
01:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI Device 682f
07:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 07)
08:00.0 Network controller: Intel Corporation Centrino Wireless-N 2230 (rev c4)
1
skarz