web-dev-qa-db-fra.com

Comment savoir si mon fan travaille sous Ubuntu

Je viens d'acheter un nouveau netbook et je crains que le ventilateur ne fonctionne pas correctement.

lm-sensor ne détecte pas de ventilateur, je ne l'entends pas et ne sens pas l'air sortir de la zone des ventilateurs.

Le netbook est un tout nouveau Toshiba Satellite NB10-A. Je crains que l'utilisation d'Ubuntu ne détruise mon netbook. :(

La température continue de chauffer, mais je n'entends pas de ventilateur.

Voici ma sortie des capteurs lm:

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)

MODIFIER

Un autre critique de ce modèle a exprimé son inquiétude quant au fait que le ventilateur ne fonctionne pas car il ne pouvait ni détecter un ventilateur ni l'entendre:

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

Sortie du ventilateur fwts:

Résultats générés par fwts: Version 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

Essayez d’utiliser HardInfo qui est une application graphique très utile pour connaître toutes les informations concernant le système et le matériel.

Installez HardInfo en Sudo apt-get install hardinfo

Voici une capture d'écran où les informations sur les fans sont affichées.

screen

J'espère que cela t'aides.

5
Pandya

Si vous souhaitez tester votre ventilateur de processeur. Ensuite, lancez simplement ce programme 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;
}
}

puis donnez la commande "capteurs" dans le terminal pour que vous puissiez connaître la vitesse de votre ventilateur. Ce programme consomme beaucoup de ressources et consomme beaucoup de CPU.

0
Rishabh Dhiman