Fan constantemente roda na Dell no Ubuntu

1

A configuração do meu laptop é Dell 3521 Core i3 3227U @ 1.9Ghz 4 GB de RAM Gráficos dedicados Intel HD4000 gráficos + radeon HD7670m 1GB DDR3.

Quando eu inicio o Ubuntu 14.04.02LTS no meu laptop, a ventoinha da CPU começa a funcionar continuamente na velocidade máxima fazendo um som alto enquanto o laptop está em estado ocioso :( e também o ar apagado não está quente, apenas normal Constantemente atualizei meu sistema operacional, mas nada para o ventilador rodando na velocidade máxima Então eu pensei que o driver de código aberto é o problema, então eu tentei driver proprietário fglrx através do hardware adicional Mas ainda assim o mesmo problema existe Então eu mudei para o Ubuntu 14.10 e instalei o driver intel disponível no 01.org, mas ainda assim o problema não está resolvido.Então Hoje instalei o Ubuntu 15.04 com o driver proprietário fglrx, mas ainda assim o problema não está resolvido.Por favor me digam como consertar isso o mais rápido possível . Obrigado

Aqui está

root@kasun-Inspiron-3521:/home/kasun# lspci -k | grep -EA2 'VGA|3D'
00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09)
    Subsystem: Dell Device 0598
    Kernel driver in use: i915
--
01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Thames [Radeon HD 7500M/7600M Series] (rev ff)
07:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 05)
    Subsystem: Dell Device 0598

root@kasun-Inspiron-3521:/home/kasun# 
    
por Kasun Siyambalapitiya 25.07.2015 / 16:45

1 resposta

0

Eu resolvi usando o pacote i8kutil que é usado para controlar os ventiladores em laptops Dell.

Use esta solução encontrada nesta página da Web: Como resolver problemas de fãs de laptops Dell no Ubuntu .

Eu usei essa configuração para meus gráficos dedicados Dell 3521 com Radeon HD7670M de 1 GB.

# Sample i8kmon configuration file (/etc/i8kmon.conf, ~/.i8kmon).
# External program to control the fans
set config(i8kfan)  /usr/bin/i8kfan
# Run as daemon, override with --daemon option
set config(daemon) 0
# Automatic fan control, override with --auto option
set config(auto) 1
set config(nouserconfig) 1
# Applet geometry, override with --geometry option
set config(geometry)    {48x48}
# Report status on stdout, override with --verbose option
set config(verbose) 1
# Status check timeout (seconds), override with --timeout option
set config(timeout) 5
# Temperature display unit (C/F), override with --unit option
set config(unit)    C
# Temperature threshold at which the temperature is displayed in red
set config(t_high)  80
# Temperature thresholds: {fan_speeds low_ac high_ac low_batt high_batt}
# These were tested on the I8000. If you have a different Dell laptop model
# you should check the BIOS temperature monitoring and set the appropriate
# thresholds here. In doubt start with low values and gradually rise them
# until the fans are not always on when the cpu is idle.
set config(0)   {{-1 0}  -1  60  -1  65}
set config(1)   {{-1 1}  50  70  55  75}
set config(2)   {{-1 1}  60  80  65  85}
set config(3)   {{-1 2}  70 128  75 128}
# end of file

Após a configuração, execute este terminal no início de cada inicialização:

i8kmon --auto --verbose --nouserconfig
    
por Kasun Siyambalapitiya 11.01.2016 / 07:18