Linux lm_sensors

硬件环境:
System: NEC NEC Express5800/R120a-2 [N8100-1609F]
Board: MICRO-STAR MS-9197-01S
 
系统环境:
CentOS Linux 5.4
Kernel Version: 2.6.18-164.6.1.el5PAE
 
软件:sensors version 3.1.1 with libsensors version 3.1.1
 
lm_sensors 配置向导参考: http://www.lm-sensors.org/wiki/iwizard/1
 
在运行sensors-detect命令时,提示某些modules没有正确加载:
Now follows a summary of the probes I have just done.
Just press ENTER to continue:    

Driver `adm1021':
    * Bus `SMBus I801 adapter at 1c00'
        Busdriver `i2c-i801', I2C address 0x18
        Chip `Maxim MAX1617' (confidence: 3)
    * Bus `SMBus I801 adapter at 1c00'
        Busdriver `i2c-i801', I2C address 0x19
        Chip `Maxim MAX1617' (confidence: 3)
    * Bus `SMBus I801 adapter at 1c00'
        Busdriver `i2c-i801', I2C address 0x1a
        Chip `Maxim MAX1617' (confidence: 3)

Driver `coretemp':
    * Chip `Intel Core family thermal sensor' (confidence: 9)

Driver `ipmisensors':
    * ISA bus, address 0xca2
        Chip `IPMI BMC KCS' (confidence: 8)

Warning: the required module coretemp is not currently installed
on your system. If it is built into the kernel then it's OK.
Otherwise, check http://www.lm-sensors.org/wiki/Devices for
driver availability.

Warning: the required module ipmisensors is not currently installed
on your system. If it is built into the kernel then it's OK.
Otherwise, check http://www.lm-sensors.org/wiki/Devices for
driver availability.
 
尝试加载coretemp模块:
# modprobe coretemp
FATAL: Module coretemp not found.
 
解决方法:
使用 http://elrepo.org提供的kmod-coretemp.
 
# rpm -Uvh http://elrepo.org/elrepo-release-0.1-1.el5.elrepo.noarch.rpm
# rpm --import http://elrepo.org/RPM-GPG-KEY-elrepo.org
# yum --enablerepo=elrepo  list | grep coretemp
kmod-coretemp.i686                       1.1-6.el5.elrepo              elrepo  
kmod-coretemp-PAE.i686                   1.1-6.el5.elrepo              elrepo  
kmod-coretemp-xen.i686                   1.1-6.el5.elrepo              elrepo  
# yum --enablerepo=elrepo install -y kmod-coretemp-PAE
# modprobe coretemp
# lsmod |grep coretemp
coretemp               12160  0
hwmon                   7365  2 adm1021,coretemp
 
重新运行sensors-detect.
 

你可能感兴趣的:(linux,职场,Sensors,休闲)