# # Original Version # ---------------- # http://www.Linux-1U.net/LCD/lm_sensors.Txt/i2c_lm_sensors.tusi630.txt # # # lm_sensors for Asus Tusi-630TX # =============================== # # # 20-Jun-02 amo Date-of-Birth # # # http://www.lm-sensors.nu # # Masiling List # linux-i2c@pelican.tk.uni-linz.ac.at # # # # install i2c # ----------- # cd /usr/local/src # wget .... # tar zxvfp i2c-2.6.3.tar.gz cd i2c-2.6.3 # make make install # # # install lm_sensors # ------------------ # cd /usr/local/src # wget .... # tar zxvfp lm_sensors-2.6.3.tar.gz # cd lm_sensors-2.6.3 # make make install # # Check that it was installed # ls -la /lib/modules/`uname -r`/misc/lm* ls -la /lib/modules/`uname -r`/misc # # lm_sesnors-*/prog/mkdev/mkdev.sh ls -la /dev/i2c* # # # Try to autodetect the hardware sensors # -------------------------------------- # default answers should usually be good enough # ../lm_sensors-2.6.3/prog/detect/sensors-detect # # # vi /etc/ld.so.conf # add this line /usr/local/lib # ldconfig # # vi /etc/rc.d/rc.local # # 20-Jun-02 amo Added lm_sensors stuff # # I2C adapter drivers modprobe i2c-isa # # I2C chip drivers modprobe sis5595 modprobe it87 # # vi /etc/modules.conf # # 20-Jun-02 amo Added lm_sensors stuff # path[i2c]=/lib/modules/`uname -r`/misc path[misc]=/lib/modules/`uname -r`/misc # # I2C module options alias char-major-89 i2c-dev # # # reboot or manually run modprobe # ------------------------------- # depmod -a # # modprobe i2c-isa # modprobe sis5595 # modprobe it87 # # lsmod # i2c-isa should be liste # # /sbin/depmod -a depmod: *** Unresolved symbols in /lib/modules/2.4.18/misc/i2c-philips-par.o rm -f /lib/modules/2.4.18/misc/i2c-philips-par.o # /sbin/depmod -a # # # Watch the values lm_sensors can read # ------------------------------------- # cat /proc/sys/dev/sensors/it87-isa-0290/{fan1,fan2,fan3} cat /proc/sys/dev/sensors/it87-isa-0290/{temp1,temp2,temp3} # # # CAREFULLY....quickly... # ----------------------- # disconnect the cpu fan for a second... # and watch your cpu fan indicator go to zero # # # Figure out how you want to be notified when the any of the fan dies.. # --------------------------------------------------------------------- # # http://www.Linux-1U.net/LCD/fan_detect.pl # # # end of file