我在我的tmon 7.5中找到了一个CentOS实用程序,我在谷歌上搜索了这个工具:
TMON是用来帮助可视化、调优和测试复杂的热子系统的工具。..。仅用于监测:$ sudo ./tmon https://github.com/torvalds/linux/tree/master/tools/thermal/tmon
但是由于这次发射,我只得到了一个错误:
No thermal zones found, exit在我的E5-2620 v4和内核3.10.0-862.11.6.el7.x86_64上。
我还发现了其他一些不太好的地方和类似的话题(比如RH:https://bugzilla.redhat.com/show_bug.cgi?id=1466991上的这个),但是它还没有弄清楚如何正确地使用它来监控,以及这个“区域”意味着什么。
UPD此CentOS位于裸金属服务器上。
发布于 2019-02-01 13:35:44
您可能需要加载主板的某些内核模块才能获得热区读数,下面是使用lm-传感器包从Ubuntu14.04LTS裸金属服务器读取的数据
root@vm02:~# sensors
coretemp-isa-0000
Adapter: ISA adapter
Physical id 0: +64.0°C (high = +80.0°C, crit = +100.0°C)
Core 0: +64.0°C (high = +80.0°C, crit = +100.0°C)
Core 1: +60.0°C (high = +80.0°C, crit = +100.0°C)
Core 2: +62.0°C (high = +80.0°C, crit = +100.0°C)
Core 3: +58.0°C (high = +80.0°C, crit = +100.0°C)
nct6776-isa-0290
Adapter: ISA adapter
Vcore: +0.86 V (min = +0.00 V, max = +1.74 V)
in1: +1.85 V (min = +0.00 V, max = +0.00 V) ALARM
AVCC: +3.34 V (min = +2.98 V, max = +3.63 V)
+3.3V: +3.33 V (min = +2.98 V, max = +3.63 V)
in4: +0.91 V (min = +0.00 V, max = +0.00 V) ALARM
in5: +1.75 V (min = +0.00 V, max = +0.00 V) ALARM
in6: +0.87 V (min = +0.00 V, max = +0.00 V) ALARM
3VSB: +3.49 V (min = +2.98 V, max = +3.63 V)
Vbat: +3.33 V (min = +2.70 V, max = +3.63 V)
fan1: 0 RPM (min = 0 RPM)
fan2: 1912 RPM (min = 0 RPM)
fan3: 0 RPM (min = 0 RPM)
fan4: 0 RPM (min = 0 RPM)
fan5: 0 RPM (min = 0 RPM)
SYSTIN: +37.0°C (high = +0.0°C, hyst = +0.0°C) ALARM sensor = thermistor
CPUTIN: +36.0°C (high = +80.0°C, hyst = +75.0°C) sensor = thermistor
AUXTIN: +32.0°C (high = +80.0°C, hyst = +75.0°C) sensor = thermistor
PECI Agent 0: +63.0°C (high = +80.0°C, hyst = +75.0°C)
(crit = +100.0°C)
PCH_CHIP_TEMP: +0.0°C
PCH_CPU_TEMP: +0.0°C
PCH_MCH_TEMP: +0.0°C
intrusion0: ALARM
intrusion1: ALARM
beep_enable: disabled您可以使用lm-sensors包来识别您需要加载的模块,检查man sensors-detect。
https://serverfault.com/questions/951837
复制相似问题