Fedora7/sensorsを動かす

sensorsを動かすためにsensors-detectコマンドを実行
途中で現れる選択肢にはすべてyesで対応

# sensors-detect

# sensors-detect revision 4609 (2007-07-14 09:28:39 -0700)

This program will help you determine which kernel modules you need
to load to use lm_sensors most effectively. It is generally safe
and recommended to accept the default answers to all questions,
unless you know what you're doing.

(中略)

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 w83627ehf
modprobe coretemp
# sleep 2 # optional
/usr/bin/sensors -s # recommended
#----cut here----

If you have some drivers built into your kernel, the list above will
contain too many modules. Skip the appropriate ones! You really
should try these commands right now to make sure everything is
working properly. Monitoring programs won't work until the needed
modules are loaded.

Do you want to overwrite /etc/sysconfig/lm_sensors? (YES/no): yes

あとは(中略)後の指示に従うだけ。
/etc/modprobe.confの末尾に

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

を追加。
次に/etc/rc.d/init.d/へ移動し、

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

を記述したシェルスクリプトファイルを作成。
あとはln -sコマンドでシンボリックリンクを/etc/rc.d/rc5.d/ディレクトリに作成。
これでsensorsコマンドを使用できるようになりました。