web-dev-qa-db-ja.com

ファンがUbuntuで動作していることを確認するにはどうすればよいですか

新品のネットブックを購入しましたが、ファンが正常に動作していないのではないかと心配しています。

lm-sensorsはファンを検出せず、ファンの音が聞こえず、ファンの領域から空気が吹き出すのを感じることができません。

ネットブックは真新しいToshiba Satellite NB10-Aです。 Ubuntuを使用するとネットブックが破壊されるのではないかと心配しています。 :(

温度は上昇し続けていますが、ファンの声が聞こえません。

Lm-sensorsの出力は次のとおりです。

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

coretemp-isa-0000
Adapter: ISA adapter
Core 0:       +48.0°C  (high = +105.0°C, crit = +105.0°C)
Core 1:       +48.0°C  (high = +105.0°C, crit = +105.0°C)

編集

この正確なモデルの別のレビュアーは、ファンを検出できず、ファンの声も聞こえないため、ファンが機能しないことに懸念を表明しました。

http://mentalnirex.wordpress.com/2014/03/25/linux-and-the-Toshiba-nb10/

Fwtsファンからの出力:

Fwtsによって生成された結果:バージョンV14.03.01(2014-03-27 02:14:17)。

Some of this work - Copyright (c) 1999 - 2014, Intel Corp. All rights reserved.
Some of this work - Copyright (c) 2010 - 2014, Canonical.

This test run on 14/06/14 at 12:45:01 on Host Linux juke
3.15.0-031500rc8-generic #201406012235 SMP Mon Jun 2 02:36:11 UTC 2014 x86_64.

Command: "fwts fan".
Running tests: fan.

fan: Simple fan tests.
--------------------------------------------------------------------------------
Test 1 of 2: Test fan status.
Test how many fans there are in the system. Check for the current status of the
fan(s).
PASSED: Test 1, Fan cooling_device0 of type Processor has max cooling state 10
and current cooling state 0.
PASSED: Test 1, Fan cooling_device1 of type Processor has max cooling state 10
and current cooling state 0.

Test 2 of 2: Load system, check CPU fan status.
Test how many fans there are in the system. Check for the current status of the
fan(s).
Loading CPUs for 20 seconds to try and get fan speeds to change.
Fan cooling_device0 current state did not change from value 0 while CPUs were
busy.
Fan cooling_device1 current state did not change from value 0 while CPUs were
busy.

ADVICE: Did not detect any change in the CPU related thermal cooling device
states. It could be that the devices are returning static information back to
the driver and/or the fan speed is automatically being controlled by firmware
using System Management Mode in which case the kernel interfaces being examined
may not work anyway.


================================================================================
2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only.
================================================================================


2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only.

Test Failure Summary
================================================================================

Critical failures: NONE

High failures: NONE

Medium failures: NONE

Low failures: NONE

Other failures: NONE

Test           |Pass |Fail |Abort|Warn |Skip |Info |
---------------+-----+-----+-----+-----+-----+-----+
fan            |    2|     |     |     |     |     |
---------------+-----+-----+-----+-----+-----+-----+
Total:         |    2|    0|    0|    0|    0|    0|
---------------+-----+-----+-----+-----+-----+-----+
7
user2734752

システムとハードウェアに関するすべての情報を知るのに非常に役立つGUIアプリケーションであるHardInfoを使用してみてください。

Sudo apt-get install hardinfoによるHardInfoのインストール

これは、ファン情報が表示されるスクリーンショットです。

screen

お役に立てれば。

5
Pandya

CPUファンをテストする場合。次に、このcプログラムを実行します。

#include <stdio.h>
int main(){
int count=0,found=0;
int a=2,current=2;
while(found<100000){
    while(a<current)
    {
        if(current%a==0){
            count=1;
        }
        a++;
    }
    if(count==0){
        printf("%d\n",current);
        found++;
    }
    current++;
    a=2;
    count=0;
}
}

次に、ターミナルで「センサー」コマンドを実行すると、ファンの速度がわかります。このプログラムはリソースを大量に消費し、CPUを大量に消費します。

0
Rishabh Dhiman