刚 DIY 一个小主机,因为使用功率很低的CPU,买了一个金钱豹2U散热器,风扇声音很大,就把风扇拆下来,只使用下面的铜块。就得对CPU问寒问暖,时刻了解它的温度。
不用安装其它软件的方法:
1
2
# cat /sys/class/thermal/thermal_zone0/temp
28000
除以1000 就是摄氏度,可以用下面的命令转换为摄氏度 °C
1
2
# echo $[$(cat /sys/class/thermal/thermal_zone0/temp)/1000]°
28°
一般用上面方法就可以知道CPU 的温度,也可以使用 sensors
简单查看
先安装
1
# apt-get install lm-sensors
检测传感器:
1
# sh -c "yes|sensors-detect"
执行sensors查看CPU的温度:
1
# sensors
1
2
3
4
5
6
7
8
9
10
# sensors
power_meter-acpi-0
Adapter: ACPI interface
power1: 0.00 W (interval = 0.00 s)
coretemp-isa-0000
Adapter: ISA adapter
Package id 0: +29.0°C (high = +79.0°C, crit = +85.0°C)
Core 0: +29.0°C (high = +79.0°C, crit = +85.0°C)
Core 1: +29.0°C (high = +79.0°C, crit = +85.0°C)
室温15°C,CPU 温度不高,到夏天看看这小铜块能不能好好给CPU散热。
本文网址: https://pylist.com/topic/216.html 转摘请注明来源