CC: mike@mikewire.com
I am getting some strange readings:
[root@x2 etc]# sensors -v
sensors version 2.10.5 with libsensors version 2.10.5
[root@x2 etc]# sensors
k8temp-pci-00c3
Adapter: PCI adapter
Core0 Temp:
-12°C
Core0 Temp:
-16°C
Core1 Temp:
+2°C
Core1 Temp:
-8°C
it8712-isa-0290
Adapter: ISA adapter
X2 VCore 1 in0:
+1.38 V (min = +4.08 V, max = +4.08 V) ALARM
X2 VCore 2 in1:
+4.08 V (min = +4.08 V, max = +4.08 V) ALARM
+3.3V in2: +3.30 V (min = +4.08 V, max = +4.08 V) ALARM
+5V in3: +6.85 V (min = +6.85 V, max = +6.85 V) ALARM
+12V in4 :+12.54 V (min = +16.32 V, max = +16.32 V) ALARM
-12V in5: -15.33 V (min = +3.93 V, max = +3.93 V) ALARM
-5V in6 : +4.03 V (min = +4.03 V, max = +4.03 V) ALARM
Stdby in7: +6.85 V (min = +6.85 V, max = +6.85 V) ALARM
VBat in8: +3.18 V
fan1: 3947 RPM (min = 0 RPM, div = 2)
fan2: 16071 RPM (min = 3000 RPM, div = 2)
X2 M/B Temp:
+61°C (low = -1°C, high = -1°C) sensor = diode
X2 CPU Temp:
+71°C (low = -1°C, high = -1°C) sensor = diode
vid: +1.150 V
[root@x2 etc]#
I have done some initial tests, but I don't know why the "A" is showing after the temp. I also have 2 sets of Core0 and Core1, which seems strange for a dual core.
Here is my config:
[root@x2 etc]# vim sensors.conf
# set in6_max -5 * 0.95
# set in6_min -5 * 1.05
# set in7_min 5 * 0.95
# set in7_max 5 * 1.05
#the chip does not support in8 min/max
# Temperature
#
# Important - if your temperature readings are completely whacky
# you probably need to change the sensor type.
# Adujst and uncomment the appropriate lines below.
# The old method (modprobe it87 temp_type=0xXX) is no longer supported.
#
# 2 = thermistor; 3 = thermal diode; 0 = unused
set sensor1 3
set sensor2 3
# set sensor3 2
# If a given sensor isn't used, you will probably want to ignore it
# (see ignore statement right below).
label temp1 "X2 M/B Temp"
# set temp1_over 40
# set temp1_low 15
label temp2 "X2 CPU Temp"
# set temp2_over 45
# set temp2_low 15
ignore temp3
label temp3 "X2 Temp3 ??"
# set temp3_over 45
# set temp3_low 15
ignore temp3
# The A7V8X-X has temperatures inverted, and needs a conversion for
# CPU temp. Thanks to Preben Randhol for the formula.
# label temp1 "CPU Temp"
# label temp2 "M/B Temp"
# compute temp1 (-15.096+1.4893*@), (@+15.096)/1.4893
# The A7V600 also has temperatures inverted, and needs a different
# conversion for CPU temp. Thanks to Dariusz Jaszkowski for the formula.
# label temp1 "CPU Temp"
# label temp2 "M/B Temp"
# compute temp1 (@+128)/3, (3*@-128)
# Fans
set fan1_min 0
set fan2_min 3000
ignore fan3
# set fan3_min 3000
#
Any tips on how to get the reporting correct are appreciated - thank you!!