♥
使用Lm_Sensors检测cpu温度
Lm_sensors是一个命令行工具,用于显示所有芯片传感器数据的当前读数,包括CPU温度。默认情况下,Ubuntu LInux没有安装Lm_Sensors,因此,我们必须自己安装它们。
root@linuxprobe-PC:~$ sudo apt install lm-sensors
检测硬件
接下来,我们需要检测安装在电脑上的硬件监控芯片。现在我们可以开始检测电脑的硬件传感器了:
root@linuxprobe-PC:~$ sudo sensors-detect# sensors-detect revision 6284 (2015-05-31 14:00:33 +0200)# System: VMware, Inc. VMware Virtual Platform [None]# Board: Intel Corporation 440BX Desktop Reference Platform# Kernel: 4.15.0-30Ubuntu-generic x86_64# Processor: Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz (6/158/10)This program will help you determine which kernel modules you needto load to use lm_sensors most effectively. It is generally safeand recommended to accept the default answers to all questions,unless you know what you\'re doing.Some south bridges, CPUs or memory controllers contain embedded sensors.Do you want to scan for them? This is totally safe. (YES/no): yesSilicon Integrated Systems SIS5595... NoVIA VT82C686 Integrated Sensors... NoVIA VT8231 Integrated Sensors... NoAMD K8 thermal sensors... NoAMD Family 10h thermal sensors... NoAMD Family 11h thermal sensors... NoAMD Family 12h and 14h thermal sensors... NoAMD Family 15h thermal sensors... NoAMD Family 16h thermal sensors... NoAMD Family 17h thermal sensors... NoAMD Family 15h power sensors... NoAMD Family 16h power sensors... NoIntel digital thermal sensor... Success! (driver `coretemp\')Intel AMB FB-DIMM thermal sensor... NoIntel 5500/5520/X58 thermal sensor... NoVIA C7 thermal sensor... NoVIA Nano thermal sensor... NoSome Super I/O chips contain embedded sensors. We have to write tostandard I/O ports to probe them. This is usually safe.Do you want to scan for Super I/O sensors? (YES/no): yes..................
显示CPU温度
可以通过以下命令查看温度数据了:
root@linuxprobe-PC:~$ sensorsiwlwifi_1-virtual-0Adapter: Virtual devicetemp1: +33.0°Cpch_skylake-virtual-0Adapter: Virtual devicetemp1: +38.5°CBAT0-acpi-0Adapter: ACPI interfacein0: +12.45 Vcoretemp-isa-0000Adapter: ISA adapterPackage id 0: +39.0°C (high = +100.0°C, crit = +100.0°C)Core 0: +39.0°C (high = +100.0°C, crit = +100.0°C)Core 1: +38.0°C (high = +100.0°C, crit = +100.0°C)thinkpad-isa-0000Adapter: ISA adapterfan1: 0 RPMtemp1: +38.0°Ctemp2: N/Atemp3: +0.0°Ctemp4: +0.0°Ctemp5: +0.0°Ctemp6: +0.0°Ctemp7: +0.0°Ctemp8: +0.0°CBAT1-acpi-0Adapter: ACPI interfacein0: +12.49 Vacpitz-acpi-0Adapter: ACPI interfacetemp1: +38.0°C (crit = +128.0°C)
还可以使用watch命令实时关注:
root@linuxprobe-PC:~$ watch sensors
♥
使用图形化工具psensor显示cpu温度
使用Psensor,您可以检查以下各项:
- 主板、CPU传感器和NVidia GPU的温度
- 硬盘驱动器的温度
- 风扇的转速
- 监视CPU使用情况
最新版本的Psensor还为Ubuntu提供了一个applet指示器,因此在Ubuntu上更容易监控硬件温度。您可以选择在顶部面板中显示温度。它甚至可以在温度超过极限时发送桌面通知。
我们可以使用下面的命令安装Psensor:
root@linuxprobe-PC:~/Desktop$ sudo apt install -y psensor
打开ubuntu的launchpad,在里面找到psensor,打开该应用就可以看到多个传感器:
♥
使用图形化工具hardinfo
Hardinfo是Linux中用于在图形化界面中显示硬件信息的工具。可以使用它检测cpu的温度。以下命令安装hardinfo:
root@linuxprobe-PC:~/Desktop$ sudo apt install hardinfo# 运行一下命令打开hardinforoot@linuxprobe-PC:~/Desktop$ sudo hardinfo
♥
总结
在本教程中,我们将学习如何从命令行和桌面获取Ubuntu Linux上的CPU温度。
© 版权声明
本文中引用的各种信息及资料(包括但不限于文字、数据、图表及超链接等)均来源于该信息及资料的相关主体(包括但不限于公司、媒体、协会等机构)的官方网站或公开发表的信息。部分内容参考包括:(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供参考使用,不准确地方联系删除处理!
THE END