Page 1 of 1

HW sensors

Posted: 5. Jun 2011, 17:58
by Tim CowChip
I have used Arch Linux and FreeBSD for years, but am a Slackware noob.
I am trying to get my sensor module loaded at boot time and have read some rather old threads (2005-2007) about compiling my kernel. If this still necessary, has the method changed in recent years?

My output for "sensors-detect"

Code: Select all

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

Driver `w83627hf':
  * ISA bus, address 0x290
    Chip `Winbond W83627THF/THG Super IO Sensors' (confidence: 9)

Do you want to overwrite /etc/sysconfig/lm_sensors? (YES/no): 
Copy prog/init/lm_sensors.init to /etc/init.d/lm_sensors
for initialization at boot time.
You should now start the lm_sensors service to load the required
kernel modules.

Re: HW sensors

Posted: 10. Jun 2011, 18:22
by dab1414
Try as root:

Code: Select all

modprobe w83627hf
and then:

Code: Select all

sensors
If it works, add the modprobe line to /etc/rc.d/rc.local so that it will always be loaded at boot time.

EDIT: If this doesn't work then yes you will have to recompile your kernel

Re: HW sensors

Posted: 26. Aug 2011, 23:13
by Tim CowChip
Sorry it took so long to get back. Yes the modprobe entry in /etc/rc.d/rc.local worked. Thank you so much.