> > > > SB: +1.30 V (min = +0.99 V, max = +1.21 V) > > > > MB Temperature: +45.0°C (high = +45.0°C, crit = +95.0°C) > k10temp is the AMD CPU temperature as reported by the CPU itself. It isn't > really accurate. acpitz-virtual is, as the name says, a virtual device. > acpitx is short for "ACPI thermal zone". It may also reflect the CPU > temperature, but I don't know for sure. > > Guenter OK, thanks once again. I guess I will ignore them. I hope you don't mind me asking all these questions, but I do have a couple more. Note the two reports above. Where is the sensors routine getting its limit values? Both the SouthBridge voltage and the chip array temperature are reported out of bounds, yet I am not overclocking, at all. The manual says the motherboard offers legitimate OC values of 1.10, 1.12, 1.14, 1.16, 2.98, and 3.00 VDC. Given that, I shouldn't think 1.3V would be out of bounds. That, and 45C is just not really that hot. The chipset often rises to well over 60C, and I don't really believe it to be a problem. Finally, and this one I admit is really getting close to being totally off-topic, but the script I am writing reports the out of bounds values to me via mail. The degree character gets mangled, though, making the text look funny. It's really not a big deal, but it is a bit annoying. The text above comes out as: +40.0°C (high = +60.0°C, crit = +95.0°C) All I do is store the text of the `sensors` command to a variable and then pass the variables to mail. (This is a bash script.) SID=$( echo $line | cut -d ":" -f1 ) # $SID = Sensor ID AID=$(echo $line | cut -d ":" -f4 ) # $AID = Sensor Name TID=$(echo $line | cut -d ":" -f5 ) # $TID = Text Name for e-mail FIELDS=$( sensors | grep "$AID:" ) # $FIELDS = Text from `sensors` F2=$( echo $FIELDS | cut -d ":" -f2 ) # $F2 = Description from `sensors` CVAL=${F2% (*} # $CVAL = Current Sensor Value ... echo "$TID $ATEXT Value: $F2" | mail -a From:sensor_monitor -s "RAID-Server Sensor Event Notification" xxxxxxxxxx@xxxxxxxxxxxxx _______________________________________________ lm-sensors mailing list lm-sensors@xxxxxxxxxxxxxx http://lists.lm-sensors.org/mailman/listinfo/lm-sensors