lm_sensors でマザーボードをモニターするには….

lm_sensors でマザーボードをモニターするには yumでインストール # yum install lm_sensors 次にsensors-detectでマザーボードのチップなどを認識する。基本的に[Enter] … “lm_sensors でマザーボードをモニターするには….” の続きを読む

lm_sensors でマザーボードをモニターするには

yumでインストール
# yum install lm_sensors

次にsensors-detectでマザーボードのチップなどを認識する。基本的に[Enter]キーでOK

# sensors-detect(省略)

We can start with probing for (PCI) I2C or SMBus adapters. You do not need any special privileges for this. Do you want to probe now? (YES/no): ←[Enter]キー
To make the sensors modules behave correctly, add these lines to

等等~~

最後に、/etc/modules.conf に追加すべき項目が表示される。

/etc/modules.conf:
#—-cut here—-
# I2C module options
alias char-major-89 i2c-dev
#—-cut here—-

等~

/etc/rc.local にも以下の追加が表示される。

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

#—-cut here—-
# I2C adapter drivers
modprobe i2c-amd756
modprobe i2c-isa
# I2C chip drivers
modprobe w83781d
modprobe eeprom
modprobe w83627hf
# sleep 2 # optional
/usr/bin/sensors -s # recommended
#—-cut here—-

等~

作業が終了したら再起動

lsmodコマンドでモジュールが読み込まれているかどうかを確認しておくと良い。

ハードウェアの情報は、sensorsコマンドで表示

[root@balthasar ~]# sensors
as99127f-i2c-2-2d
Adapter: SMBus I801 adapter at e800
VCore 1: +1.74 V (min = +1.49 V, max = +1.90 V)
VCore 2: +1.74 V (min = +2.24 V, max = +2.74 V) ALARM
+3.3V: +3.47 V (min = +2.96 V, max = +3.62 V)
+5V: +4.97 V (min = +4.49 V, max = +5.48 V)
+12V: +11.49 V (min = +9.12 V, max = +13.62 V)
-12V: -11.76 V (min = -14.37 V, max = -9.60 V)
-5V: -4.98 V (min = -6.00 V, max = -4.00 V)
fan1: 3857 RPM (min = 0 RPM, div = 2)
fan2: 2057 RPM (min = 0 RPM, div = 2)
fan3: 1512 RPM (min = 0 RPM, div = 2)
M/B Temp: +35°C (high = +105°C, hyst = +0°C)
CPU Temp: +35.5°C (high = +100°C, hyst = +92°C)
temp3: -31.5°C (high = +122°C, hyst = +121°C)
vid: +1.700 V (VRM Version 8.2)
alarms:
beep_enable:
Sound alarm enabled

等~