如何使用选项 --ignore-cpuid-check 运行 Thermald

如何使用选项 --ignore-cpuid-check 运行 Thermald

我收到消息:

thermald: Unsupported cpu model, use thermal-conf.xml file or run with --ignore-cpuid-check

sensors-detect建议安装哪些 和 在coretemp中。w83627hf/etc/module

  1. 尝试

如果我运行sudo thermald --no-daemon --ignore-cpuid-check | tee thermald.log,我会得到:

NO RAPL sysfs present
Polling mode is enabled: 4
  1. 尝试

我将thermal-conf.xml示例更改为这里。运行sudo thermald --no-daemon | tee thermald.log,我得到:

NO RAPL sysfs present
10 CPUID levels; family:model:stepping 0x6:f:6 (6:15:6)
 Need Linux PowerCap sysfs
Unsupported cpu model, using thermal-conf.xml only
Polling mode is enabled: 4
sensor id 2: No temp sysfs for reading raw temp
XML zone: invalid sensor type pkg-temp-0
Zone update failed: unable to bind

因此,最简单的方法似乎是使用选项运行 Thermald --ignore-cpuid-check。如何使用该选项运行 Thermald --ignore-cpuid-check?或者还有其他方法来获取探测器 xml 配置吗?

答案1

如果使用systemd

/lib/systemd/system/thermald.service通过运行编辑

sudo systemctl edit --full thermald.service

在末尾添加选项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

如果使用暴发户(Ubuntu 15.04 以下

在 Ubuntu 中,您可以在以下位置添加选项/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

在最后一行添加该选项。

相关内容