[Eisfair] LM-Sensors für Eisfair-1???

Detlef Paschke schabau at t-online.de
Mi Mai 22 13:00:03 CEST 2013


"Kay Martinen"  schrieb
>
> fileserver # sensors
> w83782d-isa-0290
> Adapter: ISA adapter
> in0:          +2.02 V  (min =  +1.30 V, max =  +3.33 V)
> in1:          +2.05 V  (min =  +1.30 V, max =  +3.33 V)
> in2:          +3.46 V  (min =  +2.80 V, max =  +3.81 V)
> in3:          +2.93 V  (min =  +2.69 V, max =  +3.28 V)
> in4:          +3.22 V  (min =  +2.64 V, max =  +3.68 V)
> in5:          +0.59 V  (min =  +0.18 V, max =  +0.96 V)
> in6:          +0.75 V  (min =  +0.54 V, max =  +1.18 V)
> in7:          +3.04 V  (min =  +2.67 V, max =  +3.28 V)
> in8:          +3.20 V  (min =  +1.50 V, max =  +3.50 V)
> fan1:        4560 RPM  (min =  664 RPM, div = 8)
> fan2:        6750 RPM  (min =  664 RPM, div = 8)
> fan3:        2721 RPM  (min =  664 RPM, div = 8)
> temp1:        +30.0?C  (high = +127.0?C, hyst =  +0.0?C)  sensor =
> thermistor
> temp2:        +37.5?C  (high = +70.0?C, hyst = +69.0?C)  sensor = 
> thermistor
> temp3:        +38.5?C  (high = +70.0?C, hyst = +69.0?C)  sensor = 
> thermistor
> cpu0_vid:    +2.000 V
> beep_enable: enabled
>
> und das mit...
>
> # /etc/sensors.conf
> chip "w83781d-*"
> set beep_enable 0
> label temp1 "SYS Temp"
> label temp2 "CPU1 Temp"
> label temp3 "CPU2 Temp"
> label fan1 "CPU1 RPM"
> label fan2 "CPU2 RPM"
> label fan3  "P/S Fan"


> label "2.0V" "CPU core"
> label "2.5V" "+2.5V"
> label "3.3V" "I/O"
> label "5.0V" "+5V"
> label "12V" "+12V"

woher nimmst Du diese Angaben für die Labels? Hier muss genau so bezeichnet 
werden wie Du es auch bei den Labels für fan und temp gemacht hast. label 
in? "Bezeichnung"

> set in1_min 2.5 * 0.95
> set in1_max 2.5 * 1.05
> set in2_min 3.3 * 0.95
> set in2_max 3.3 * 1.05
> set in3_min 5 * 0.9
> set in3_max 5 * 1.1
> set in4_min 12 * 0.9
> set in4_max 12 * 1.1
> set temp1_hyst 40
> set temp1_over 45
> set temp2_hyst 55
> set temp2_over 60
> set temp3_hyst 60
> set temp3_over 65
> set fan1_min 1000
> set fan2_min 1000
> ignore "2.5V"

auch ignorieren wird "er" hier nix weil er gar keine Ahnung hat was 2.5V 
ist. Es muss hier ignore in1 lauten wenn Dein 2.5V sich auf in1 bezieht.

>
> Zum Board von 'dmidecode':
> Handle 0x0002, DMI type 2, 8 bytes
> Base Board Information
>         Manufacturer: Gigabyte Technology Co. Ltd.
>         Product Name: i440BX-8671
>
hier ist eine Beispielconfig.
Wie Marcus schon schrieb, gibt es unter 
http://home.foni.net/~marcusroeckrath/eisfair/sensors.conf.eg noch weitaus 
mehr und ansonsten ist http://www.lm-sensors.org/ immer ein guter 
Ausgangspunkt.

chip "w83782d-*" "w83627hf-*"

# Same as above for w83781d except that in5 and in6 are computed 
differently.
# Rather than an internal inverting op amp, the 82d/83s use standard 
positive
# inputs and the negative voltages are level shifted by a 3.6V reference.
# The math is convoluted, so we hope that your motherboard
# uses the recommended resistor values.

    label in0 "VCore 1"
    label in1 "VCore 2"
    label in2 "+3.3V"
    label in3 "+5V"
    label in4 "+12V"
    label in5 "-12V"
    label in6 "-5V"
    label in7 "V5SB"
    label in8 "VBat"

# Abit BP6 motherboard has a few differences. VCore1 and VCore2 are the core
# voltages of the two processors. Vtt is memory bus termination resistors
# voltage.
#    label in1 "Vtt"
#    label in8 "VCore2"

    compute in3 ((6.8/10)+1)*@ ,  @/((6.8/10)+1)
    compute in4 ((28/10)+1)*@  ,  @/((28/10)+1)
    compute in5 (5.14 * @) - 14.91  ,  (@ + 14.91) / 5.14
    compute in6 (3.14 * @) -  7.71  ,  (@ +  7.71) / 3.14
    compute in7 ((6.8/10)+1)*@ ,  @/((6.8/10)+1)

# set limits to  5% for the critical voltages
# set limits to 10% for the non-critical voltages
# set limits to 20% for the battery voltage

#    set in0_min cpu0_vid*0.95
#    set in0_max cpu0_vid*1.05
#    set in1_min cpu0_vid*0.95
#    set in1_max cpu0_vid*1.05
#    set in2_min 3.3 * 0.95
#    set in2_max 3.3 * 1.05
#    set in3_min 5.0 * 0.95
#    set in3_max 5.0 * 1.05
#    set in4_min 12 * 0.90
#    set in4_max 12 * 1.10
#    set in5_max -12 * 0.90
#    set in5_min -12 * 1.10
#    set in6_max -5 * 0.95
#    set in6_min -5 * 1.05
#    set in7_min 5 * 0.95
#    set in7_max 5 * 1.05
#    set in8_min 3.0 * 0.80
#    set in8_max 3.0 * 1.20

# set up sensor types (thermistor is default)
# 1 = PII/Celeron Diode; 2 = 3904 transistor;
# 3435 = thermistor with Beta = 3435
# If temperature changes very little, try 1 or 2.
#   set temp1_type 1
#   set temp2_type 2
#   set temp3_type 3435

# examples for temperature limits
#    set temp1_max      40
#    set temp1_max_hyst 37
#    set temp2_max      52
#    set temp2_max_hyst 47
#    set temp3_max      52
#    set temp3_max_hyst 47


Viele Grüße
Detlef Paschke

-- 
registered Fli4l-User #00000209
Das "Zitat des Augenblicks" gibt es nur auf
http://schabau.dyndns.org 



Mehr Informationen über die Mailingliste Eisfair