O que você está usando para configurar os fãs? Eu obtive bons resultados ao instalar i8kutils
e lm-sensors
e, em seguida, adicionando o seguinte arquivo de configuração a /etc/i8kmon.conf
:
# Run as daemon, override with --daemon option
set config(daemon) 0
# Automatic fan control, override with --auto option
set config(auto) 1
# Report status on stdout, override with --verbose option
set config(verbose) 1
# Status check timeout (seconds), override with --timeout option
set config(timeout) 20
# Temperature thresholds: {fan_speeds low_ac high_ac low_batt high_batt}
set config(0) {{-1 0} -1 40 -1 40}
set config(1) {{-1 1} 30 60 30 60}
set config(2) {{-1 2} 53 128 53 128}
# For computer with 2 fans, use a variant of this instead:
# Temperature thresholds: {fan_speeds low_ac high_ac low_batt high_batt}
# set config(0) {{-1 0} -1 52 -1 65}
# set config(1) {{-1 1} 41 66 55 75}
# set config(2) {{-1 1} 55 80 65 85}
# set config(3) {{-1 2} 70 128 75 128}
# end of file
Em seguida, você pode executar /usr/bin/i8kmon -d -a
para começar a controlar os ventiladores com base na temperatura. Ele vai parar de funcionar na reinicialização, então sugiro adicioná-lo aos seus programas de inicialização.
Isso funcionou para mim, mas é possível que você também esteja passando por um problema de hardware, por exemplo. um ventilador com defeito, então YMMV.