新聞中心
lm_sensors 的軟件可以幫助我們來(lái)監(jiān)控主板,CPU 的工作電壓,風(fēng)扇轉(zhuǎn)速、溫度等數(shù)據(jù)。這些數(shù)據(jù)我們通常在主板的 BIOS 也可以看到。當(dāng)我們可以在機(jī)器運(yùn)行的時(shí)候通過(guò) lm_sensors 隨時(shí)來(lái)監(jiān)測(cè)著 CPU 的溫度變化,可以預(yù)防呵保護(hù)因?yàn)?CPU 過(guò)熱而會(huì)燒掉。

創(chuàng)新互聯(lián)公司2013年開(kāi)創(chuàng)至今,是專(zhuān)業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目成都做網(wǎng)站、成都網(wǎng)站設(shè)計(jì)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元長(zhǎng)順做網(wǎng)站,已為上家服務(wù),為長(zhǎng)順各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話(huà):18982081108
使用Lm_Sensors檢測(cè)cpu溫度
Lm_sensors是一個(gè)命令行工具,用于顯示所有芯片傳感器數(shù)據(jù)的當(dāng)前讀數(shù),包括CPU溫度。默認(rèn)情況下,Ubuntu LInux沒(méi)有安裝Lm_Sensors,因此,我們必須自己安裝它們。
bob@bob-PC:~$ sudo apt install lm-sensors
檢測(cè)硬件
接下來(lái),我們需要檢測(cè)安裝在電腦上的硬件監(jiān)控芯片?,F(xiàn)在我們可以開(kāi)始檢測(cè)電腦的硬件傳感器了:
bob@bob-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 need
to load to use lm_sensors most effectively. It is generally safe
and 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): yes Silicon Integrated Systems SIS5595... No VIA VT82C686 Integrated Sensors... No VIA VT8231 Integrated Sensors... No AMD K8 thermal sensors... No AMD Family 10h thermal sensors... No AMD Family 11h thermal sensors... No AMD Family 12h and 14h thermal sensors... No AMD Family 15h thermal sensors... No AMD Family 16h thermal sensors... No AMD Family 17h thermal sensors... No AMD Family 15h power sensors... No AMD Family 16h power sensors... No Intel digital thermal sensor... Success! (driver `coretemp')
Intel AMB FB-DIMM thermal sensor... No
Intel 5500/5520/X58 thermal sensor... No
VIA C7 thermal sensor... No
VIA Nano thermal sensor... No
Some Super I/O chips contain embedded sensors. We have to write to
standard I/O ports to probe them. This is usually safe.
Do you want to scan for Super I/O sensors? (YES/no): yes
..................
顯示cpu溫度
可以通過(guò)一下命令查看溫度數(shù)據(jù)了:
bob@bob-PC:~$ sensors
iwlwifi_1-virtual-0
Adapter: Virtual device
temp1: +33.0°C
pch_skylake-virtual-0
Adapter: Virtual device
temp1: +38.5°C
BAT0-acpi-0
Adapter: ACPI interface
in0: +12.45 V
coretemp-isa-0000
Adapter: ISA adapter
Package 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-0000
Adapter: ISA adapter
fan1: 0 RPM
temp1: +38.0°C
temp2: N/A
temp3: +0.0°C
temp4: +0.0°C
temp5: +0.0°C
temp6: +0.0°C
temp7: +0.0°C
temp8: +0.0°C
BAT1-acpi-0
Adapter: ACPI interface
in0: +12.49 V
acpitz-acpi-0
Adapter: ACPI interface
temp1: +38.0°C (crit = +128.0°C)
還可以使用watch命令實(shí)時(shí)關(guān)注:
bob@bob-PC:~$ watch sensors
使用圖形化工具psensor顯示cpu溫度
使用Psensor,您可以檢查以下各項(xiàng):
-
主板、CPU傳感器和NVidia GPU的溫度
-
硬盤(pán)驅(qū)動(dòng)器的溫度
-
風(fēng)扇的轉(zhuǎn)速
-
監(jiān)視CPU使用情況
最新版本的Psensor還為Ubuntu提供了一個(gè)applet指示器,因此在Ubuntu上更容易監(jiān)控硬件溫度。您可以選擇在頂部面板中顯示溫度。它甚至可以在溫度超過(guò)極限時(shí)發(fā)送桌面通知。
我們可以使用下面的命令安裝Psensor:
bob@bob-PC:~/Desktop$ sudo apt install -y psensor
打開(kāi)ubuntu的launchpad,在里面找到psensor,打開(kāi)該應(yīng)用就可以看到多個(gè)傳感器:
使用圖形化工具h(yuǎn)ardinfo
Hardinfo是Linux中用于在圖形化界面中顯示硬件信息的工具??梢允褂盟鼨z測(cè)cpu的溫度。以下命令安裝hardinfo:
bob@bob-PC:~/Desktop$ sudo apt install hardinfo
# 運(yùn)行一下命令打開(kāi)hardinfo
bob@bob-PC:~/Desktop$ sudo hardinfo
如何在Ubuntu Linux中獲取CPU溫度如何在Ubuntu Linux中獲取CPU溫度
文章標(biāo)題:Linux下使用Lm_Sensors檢測(cè)cpu溫度
網(wǎng)頁(yè)鏈接:http://fisionsoft.com.cn/article/dpijooh.html


咨詢(xún)
建站咨詢(xún)
