2007年3月16日

Temperature viewing in Ubuntu

How to detect CPU temperature, fan speeds and voltages (lm-sensors)
Monitoring CPU and HDD temperature
apt-get install sensors-applet
apt-get install hddtemp
Athlon-Powersaving-HOWTO
For A7V333-X
enable:
setpci -v -H1 -s 0:0.0 D2=$(printf %x $((0x$(setpci -H1 -s 0:0.0 D2) | 0x80)))
setpci -v -H1 -s 0:0.0 D5=$(printf %x $((0x$(setpci -H1 -s 0:0.0 D5) | 0x02)))
disable:
setpci -v -H1 -s 0:0.0 D2=$(printf %x $((0x$(setpci -H1 -s 0:0.0 D2) & 0x7f)))
setpci -v -H1 -s 0:0.0 D5=$(printf %x $((0x$(setpci -H1 -s 0:0.0 D5) & 0xfd)))