No Ubuntu, você pode adicionar a opção em /etc/init/thermald.conf
:
# thermald - thermal daemon
# Upstart configuration file
# Manages platform thermals
description "thermal daemon"
start on runlevel [2345] and started dbus
stop on stopping dbus
#
# don't respawn on error
#
normal exit 1
respawn
#
# consider something wrong if respawned 10 times in 1 minute
#
respawn limit 10 60
exec thermald --no-daemon --dbus-enable
Adicione a opção na última linha.
Adicione a opção em /lib/systemd/system/thermald.service
no final de ExecStart
:
[Unit]
Description=Thermal Daemon Service
[Service]
Type=dbus
SuccessExitStatus=1
BusName=org.freedesktop.thermald
ExecStart=/usr/sbin/thermald --no-daemon --dbus-enable
[Install]
WantedBy=multi-user.target
Alias=dbus-org.freedesktop.thermald.service