我的 CPU 温度是多少

我的 CPU 温度是多少

为了获取我的 CPU 温度,我首先输入sudo sensors-detect并用“是”确认所有内容。

然后我输入sudo service module-init-tools restart

现在这是 的输出sudo sensors,但我的 CPU 温度是多少?(其他温度是多少?)。没有内置板载或 pcie 显卡。

满载情况下:

it8720-isa-0228
Adapter: ISA adapter

fan1:        1461 RPM  (min =    0 RPM)
fan2:           0 RPM  (min =    0 RPM)
fan3:        2250 RPM  (min =    0 RPM)
fan5:        2295 RPM  (min =    0 RPM)
temp1:        +28.0 C  (low  = +127.0 C, high = +127.0 C)  sensor = thermistor
temp2:        +44.0 C  (low  = +127.0 C, high = +127.0 C)  sensor = thermal diode
temp3:        +60.0 C  (low  = +127.0 C, high = +127.0 C)  sensor = thermal diode
intrusion0:  ALARM

k10temp-pci-00c3
Adapter: PCI adapter
temp1:        +48.4 C  (high = +70.0 C)
                       (crit = +90.0 C, hyst = +87.0 C)

fam15h_power-pci-00c4
Adapter: PCI adapter
power1:      124.33 W  (crit = 125.19 W)

闲置的:

fan1:         722 RPM  (min =    0 RPM)
fan2:           0 RPM  (min =    0 RPM)
fan3:        2280 RPM  (min =    0 RPM)
fan5:        2319 RPM  (min =    0 RPM)
temp1:        +27.0 C  (low  = +127.0 C, high = +127.0 C)  sensor = thermistor
temp2:        +21.0 C  (low  = +127.0 C, high = +127.0 C)  sensor = thermal diode
temp3:        +19.0 C  (low  = +127.0 C, high = +127.0 C)  sensor = thermal diode
intrusion0:  ALARM

k10temp-pci-00c3
Adapter: PCI adapter
temp1:         +7.4 C  (high = +70.0 C)
                       (crit = +90.0 C, hyst = +87.0 C)

fam15h_power-pci-00c4
Adapter: PCI adapter
power1:       29.64 W  (crit = 125.19 W)

CPU:AMD FX 8350 主板:GigaByte GA-970A-UD3

答案1

k10temp-pci-00c3 适配器:PCI 适配器

该传感器由处理 AMD CPU 的 k10temp 内核模块提供,请参阅http://lm-sensors.org/wiki/Devices。相关温度是 CPU 温度。如果我没记错的话,it8720 是 MB 上的一个常见芯片,没有制造商的说明,就无法透露更多信息。

答案2

lm-sensors 仅读取内置传感器的原始数据。

事实上,并没有对制造商施加任何标准化要求。(他们可以在他们想要的地方制造任意数量的传感器)。

所以在某些情况下信息很清楚(如前面的例子)而在其他一些情况下信息不太相关。你只能做出假设。只有制造商才能告诉你。

答案3

您的 CPU 有多少个核心?答案可能是 temp1、temp2 和 temp3,每个代表一个单独的核心。

我的列表:
acpitz-virtual-0
适配器:虚拟设备
temp1:+44.5°C(临界值 = +107.0°C)

nouveau-pci-0100
适配器:PCI 适配器
temp1:+48.0°C(高温 = +100.0°C,临界值 = +110.0°C)

coretemp-isa-0000
适配器:ISA 适配器
核心 0:+45.0°C(高温 = +105.0°C,临界值 = +105.0°C)
核心 1:+47.0°C(高温 = +105.0°C,临界值 = +105.0°C)

答案4

获取所有温度区域的一行代码是:

$ paste <(cat /sys/class/thermal/thermal_zone*/type) <(cat /sys/class/thermal/thermal_zone*/temp) | column -s $'\t' -t | sed 's/...$/.0°C/'
INT3400 Thermal  20.0°C
pch_skylake      -47.0°C
SEN1             52.0°C
SEN2             48.0°C
SEN3             55.0°C
SEN4             58.0°C
B0D4             54.0°C
x86_pkg_temp     54.0°C

我有一个四核 CPU,很可能在 Linux/Ubuntu 中SEN1出现。SEN4

pch_skylake请注意,我正在研究温度问题。

相关内容