网站首页 文章专栏 ubuntu命令行查看硬件设备温度
ubuntu命令行查看硬件设备温度
创建于:2019-06-18 07:38:37 更新于:2024-03-19 06:01:15 羽瀚尘 4162
linux设备 linux,ubuntu

lm_sensors是一款linux的硬件监控的软件,可以帮助我们来 监控主板,CPU的工作电压,风扇转速、温度等数据。这些数据我们通常在主板的BIOS也可以看到。

安装

sudo apt-get install lm-sensors hddtemp
sudo sensors-detect

使用

命令行输入

sensors

输出

coretemp-isa-0000
Adapter: ISA adapter
Package id 0:  +64.0°C  (high = +80.0°C, crit = +85.0°C)
Core 0:        +64.0°C  (high = +80.0°C, crit = +85.0°C)
Core 1:        +61.0°C  (high = +80.0°C, crit = +85.0°C)

acpitz-virtual-0
Adapter: Virtual device
temp1:        +64.0°C  (crit = +84.0°C)

nouveau-pci-0100
Adapter: PCI adapter
GPU core:     +0.85 V  (min =  +0.85 V, max =  +1.03 V)
temp1:        +51.0°C  (high = +95.0°C, hyst =  +3.0°C)
                       (crit = +105.0°C, hyst =  +5.0°C)
                       (emerg = +135.0°C, hyst =  +5.0°C)
  • Adapter: ISA adapter cpu温度
  • acpitz-virtual-0 硬盘温度
  • nouveau-pci-0100 独立显卡温度

参考