|
楼主 |
发表于 2005-4-1 23:42:23
|
显示全部楼层
wiki上有文章,不过代码太多,似乎也没那么麻烦。我在这里把步骤按照 wiki大致说下,当中有些是自己为了方便就没有完全照上面。
1.下载 lm_sensors,配置sensors
- >pacman -S lm_sensors
- >modprobe i2c-dev
- > sensors-detect(这一步很简单,大部分主板只需要一直回车就可以)
复制代码
找到的模块在 /etc/sysconfig/lm_sensors
例如我的
- MODULE_0=i2c-nforce2
- MODULE_1=i2c-isa
- MODULE_2=eeprom
- MODULE_3=w83627hf
复制代码
然后通过 modprobe命令把刚才找到的模块加载进来。
再用这个命令
就可以看到所有信息了。
我自己的
- VCore 1: +1.63 V (min = +1.34 V, max = +1.76 V)
- VCore 2: +2.91 V (min = +1.34 V, max = +1.76 V)
- +3.3V: +3.33 V (min = +2.82 V, max = +3.79 V)
- +5V: +5.16 V (min = +6.85 V, max = +4.09 V)
- +12V: +12.28 V (min = +5.41 V, max = +7.48 V)
- -12V: -11.78 V (min = +3.92 V, max = -12.77 V)
- -5V: -5.05 V (min = -2.99 V, max = +2.04 V)
- V5SB: +5.59 V (min = +4.33 V, max = +0.13 V)
- VBat: +3.41 V (min = +1.26 V, max = +3.23 V)
- fan1: 3154 RPM (min = 2789 RPM, div = 2)
- fan2: 0 RPM (min = 37500 RPM, div = 2)
- fan3: 0 RPM (min = 4687 RPM, div = 4)
- temp1: +22°C (high = +91°C, hyst = -90°C) sensor = thermistor
- temp2: +34.5°C (high = +60°C, hyst = +55°C) sensor = thermistor
- temp3: -48.0°C (high = +60°C, hyst = +55°C) sensor = thermistor
- vid: +1.600 V (VRM Version 9.0)
- alarms:
- beep_enable:
- Sound alarm disabled
- eeprom-i2c-0-51
- Adapter: SMBus nForce2 adapter at 5000
- Memory type: DDR SDRAM DIMM
- Memory size (MB): 256
- eeprom-i2c-0-50
- Adapter: SMBus nForce2 adapter at 5000
- Memory type: DDR SDRAM DIMM
- Memory size (MB): 256
复制代码
把模块加到/etc/rc.conf的模块启动组中就可以了。
如果是xfce 用户可以下载xfce4-sensors-plugin,以后就可以在面板上看温度和电压等了。
值得注意的是/etc/sensors.conf某些值如果不正确,那要自己去修改下:) |
|