CPUの温度測定ツール lm_sensorsをFedora7に導入

1. yum -y install lm_sensors
2. /usr/sbin/sensors-detectコマンドを実行

To make the sensors modules behave correctly, add these lines to
/etc/modprobe.conf:

#----cut here----
# I2C module options
alias char-major-89 i2c-dev
#----cut here----

To load everything that is needed, add this to some /etc/rc* file:

#----cut here----
# Chip drivers
modprobe it87
# sleep 2 # optional
/usr/bin/sensors -s # recommended
#----cut here----

a) /etc/modprobe.confにsensor-detectの指示通りに追加

# I2C module options
alias char-major-89 i2c-dev

b) /etc/rc.localに指示通りに追加

# Chip drivers
modprobe it87
# sleep 2 # optional
/usr/bin/sensors -s # recommended

3. shutdown -r
4. sensorsコマンドを実行。起動直後はこの温度。

it8712-isa-0228
Adapter: ISA adapter
VCore 1:   +1.44 V  (min =  +0.00 V, max =  +4.08 V)   ALARM
VCore 2:   +1.52 V  (min =  +0.00 V, max =  +4.08 V)   ALARM
 +3.3V:     +3.20 V  (min =  +0.00 V, max =  +4.08 V)   ALARM
 +5V:       +5.08 V  (min =  +0.00 V, max =  +6.85 V)   ALARM
 +12V:     +11.97 V  (min =  +0.00 V, max = +16.32 V)   ALARM
 -12V:     -20.12 V  (min = -27.36 V, max =  +3.93 V)   ALARM
 -5V:       -2.35 V  (min = -13.64 V, max =  +4.03 V)   ALARM
Stdby:     +5.13 V  (min =  +0.00 V, max =  +6.85 V)   ALARM
VBat:      +2.90 V
fan1:     2343 RPM  (min =    0 RPM, div = 16)
fan2:        0 RPM  (min =    0 RPM, div = 16)
fan3:        0 RPM  (min =    0 RPM, div = 8)
M/B Temp:    +43°C  (low  =    -1°C, high =  +127°C)   sensor = diode   ALARM
CPU Temp:    +35°C  (low  =    -1°C, high =  +127°C)   sensor = diode   ALARM
Temp3:       +42°C  (low  =    -1°C, high =  +127°C)   sensor = thermistor   ALARM

http://www.atmarkit.co.jp/flinux/rensai/linuxtips/743hwmonitor.html