com o comando:
sudo sensors -u coretemp-isa-0000
Você pode ver quais opções estão disponíveis para cada chip físico.
Criar arquivo em /etc/sensors.d/
:
sudo touch /etc/sensors.d/isa-coretemp
edite o novo arquivo com:
chip "coretemp-isa-0000"
label temp2 "Core 0"
compute temp2 @-20,@-20
label temp3 "Core 1"
compute temp3 @-20,@-20
- Rótulo de alteração de linha
label temp2 "Core 0"
apenas; - A linha
compute temp2 @-20,@-20
reduz a alta temperatura de 20 graus (primeiro @ -20) e temperatura crítica também de 20 graus (segundo @ -20)
Agora, digitando sensors
, você verá as novas configurações.
Nota
Consulte man sensors.conf
:
Only certain chips support thermal sensor type change,
and even these usually only support some of the types above.
Please refer to the specific driver documentation to find out which types
are supported by your chip.
In theory, the BIOS should have configured the sensor types correctly,
so you shouldn't have to touch them, but sometimes it isn't the case.