O ventilador não é detectado

1

Estou tentando usar o Ubuntu no meu laptop. Mas o ventilador parece não funcionar .. Eu tento usar o sudo pwmconfig mas esse é o resultado ..

sudo pwmconfig
# pwmconfig revision 6166 (2013-05-01)
This program will search your sensors for pulse width modulation (pwm)
controls, and test each one to see if it controls a fan on
your motherboard. Note that many motherboards do not have pwm
circuitry installed, even if your sensor chip supports pwm.

We will attempt to briefly stop each fan using the pwm controls.
The program will attempt to restore each fan to full speed
after testing. However, it is ** very important ** that you
physically verify that the fans have been to full speed
after the program has completed.

/usr/sbin/pwmconfig: There are no fan-capable sensor modules installed

Eu também tento ~ $ lspci -k | grep -EA2 'VGA | 3D', o resultado é isto

00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09)    Subsystem: ASUSTeK Computer Inc. Device 1477
    Kernel driver in use: i915
01:00.0 VGA compatible controller: NVIDIA Corporation GF108M [GeForce GT 635M] (rev a1)     Subsystem: ASUSTeK Computer Inc. Device 1477
    Kernel driver in use: nouveau

A temperatura do meu laptop está muito alta, o que posso fazer para corrigir isso?

    
por LearningDummy 03.02.2016 / 17:18

1 resposta

1

Você tem dois adaptadores gráficos no seu sistema. Agora ambos estão habilitados e consomem energia.

Além disso, o driver nouveau não é bom em termos de energia.

Você precisa instalar drivers proprietários. Executar no terminal:

sudo apt-get install nvidia-352 nvidia-prime

e reinicie.

Você pode economizar mais energia e tornar o computador mais frio se mudar para o adaptador integrado

sudo prime-select intel

ou usando a GUI .

    
por Pilot6 04.02.2016 / 16:08