Sensors

我怎麼知道感測器輸出中的 tempX 是什麼意思?

  • October 19, 2014

temp[[:digit:]]事情很混亂。的輸出sensors可以更具人類可讀性嗎?

$ sensors
acpitz-virtual-0
Adapter: Virtual device
temp1:        +59.0°C  (crit = +127.0°C)
temp2:        +60.0°C  (crit = +100.0°C)

thinkpad-isa-0000
Adapter: ISA adapter
fan1:        2990 RPM
temp1:        +59.0°C  
temp2:        +53.0°C  
temp3:        +41.0°C  
temp4:        +76.0°C  
temp5:        +36.0°C  
temp6:            N/A  
temp7:        +33.0°C  
temp8:            N/A  
temp9:        +43.0°C  
temp10:       +51.0°C  
temp11:       +49.0°C  
temp12:           N/A  
temp13:           N/A  
temp14:           N/A  
temp15:           N/A  
temp16:           N/A 

現在它就像下面這樣。他們是否表明我的筆記型電腦很健康?我需要擔心嗎?報告的溫度是我現在在 chrome 瀏覽器中打開 100 個標籤時的溫度。當我使用冷卻器並將 cpu 頻率縮放到最低 0.8GHz 時,它們就實現了。如果沒有冷卻器,最高溫度將超過 80 攝氏度。如果進一步沒有 cpu 頻率縮放,最高可以是 90 和 100 攝氏度。

$ sensors
acpitz-virtual-0
Adapter: Virtual device
CPU_0:        +57.0°C  (crit = +127.0°C)
CPU_1:        +56.0°C  (crit = +100.0°C)

thinkpad-isa-0000
Adapter: ISA adapter
Fan:                                                   2939 RPM
CPU neighbourhood (also via ACPI THM0):                 +57.0°C  
Ultrabay:                                               +51.0°C  
Express card:                                           +38.0°C  
ATI graphics module:                                    +73.0°C  
Main battery (always around 50°C):                     +36.0°C  
n/a (probably ultrabay battery):                            N/A  
Main Battery (fits about the value reported by smapi):  +33.0°C  
n/a (probably ultrabay battery):                            N/A  
Hard disc:                                              +40.0°C  
Intel graphics module:                                  +48.0°C  
Heatsink?:                                              +46.0°C  
n/a:                                                        N/A  
n/a:                                                        N/A  
n/a:                                                        N/A  
n/a:                                                        N/A  
n/a:                                                        N/A  

看來您可以通過編輯此處/etc/sensors3.conf討論的文件來做到這一點。

sensors使用像上面這樣的描述標籤,您可以將以下部分添加到**/etc/sensors3.conf**(如果還沒有的話)。使用下面的感測器位置結果。

您可以添加如下詳細資訊。

chip "thinkpad-isa-0000"   
label fan1   "Fan"   
label temp1  "CPU"  
label temp2  "HDAPS"   
label temp3  "PCMCIA"   
label temp4  "GPU"  
label temp5  "System battery (front left, charging circuit)"   
label temp7  "System battery (rear right)"   
label temp9  "Bus between Northbridge and DRAM; Ethernet chip"   
label temp10 "Southbridge, WLAN and clock generator"   
label temp11 "Power circuitry"

您可能可以從這裡獲得有關您的模型的資訊。

引用自:https://unix.stackexchange.com/questions/163007