Ik heb een probleem met het uitlezen van de sensoren (m.b.v. lm_sensors op Debian, kernel 2.4.27) op mijn moederbord, de Intel D845GVAD2 met daarop een Celeron 1.80Ghz processor (Willamette core).
De output van sensors:
Weet iemand waarom er bij de +2.5V bij mij +1.51V staat? En heeft dit moederbord geen +12V lijn?
Dit is mijn sensors.conf:
De output van sensors:
code:
1
2
3
4
5
6
7
8
9
10
11
| adm1025-i2c-0-2d Adapter: SMBus I801 adapter at e000 +2.5V: +1.51 V (min = +2.25 V, max = +2.75 V) ALARM VCore: +1.72 V (min = +1.66 V, max = +1.83 V) +3.3V: +3.33 V (min = +2.96 V, max = +3.63 V) +5V: +5.21 V (min = +4.51 V, max = +5.49 V) +12V: +0.00 V (min = +10.81 V, max = +13.19 V) ALARM VCC: +3.27 V (min = +2.96 V, max = +3.63 V) CPU Temp: +37.0 C (low = +10 C, high = +60 C) M/B Temp: +36.0 C (low = +10 C, high = +45 C) vid: +1.750 V (VRM Version 9.0) |
Weet iemand waarom er bij de +2.5V bij mij +1.51V staat? En heeft dit moederbord geen +12V lijn?
Dit is mijn sensors.conf:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
| chip "adm1025-*" "ne1619-*"
# The ADM1025 has integrated scaling resistors, rather
# than external resistors common to most sensor devices.
# These apply to the 6 voltage inputs in0-in5 (+2.5V, VCore,
# +3.3V, +5V, +12V, VCC). As the scaling is fixed inside
# the chip for these inputs, it is fairly certain that the
# motherboard connections match these labels, and that the
# driver computations are correct. Therefore they do not need to
# be overridden here.
label in0 "+2.5V"
label in1 "VCore"
label in2 "+3.3V"
label in3 "+5V"
label in4 "+12V"
label in5 "VCC"
# Adjust this if your vid is wrong; see doc/vid
set vrm 9.0
# Tolerate a 5% deviance for CPU power-supply
set in1_min vid * 0.95
set in1_max vid * 1.05
# Tolerate a 10% deviance for other voltages
set in0_min 2.5 * 0.90
set in0_max 2.5 * 1.10
set in2_min 3.3 * 0.90
set in2_max 3.3 * 1.10
set in3_min 5.0 * 0.90
set in3_max 5.0 * 1.10
set in4_min 12 * 0.90
set in4_max 12 * 1.10
set in5_min 3.3 * 0.90
set in5_max 3.3 * 1.10
# Depending on how your chipset is hardwired, you may or may not have
# +12V readings (will show as 0.0V if you don't have it).
# ignore in4
# VCC is the power-supply voltage of the ADM1025 chipset, generally
# redundant with +3.3V so you may want to hide it.
# ignore in5
# Temperatures
label temp1 "CPU Temp"
label temp2 "M/B Temp"
set temp1_low 10
set temp1_high 60
set temp2_low 10
set temp2_high 45 |
[ Voor 10% gewijzigd door Stamgastje op 13-11-2004 22:05 ]