Setting up lm sensors: Difference between revisions
mNo edit summary |
Jrthomerson (talk | contribs) No edit summary |
||
Line 2: | Line 2: | ||
Install the neccessary packages. You will need perl to run the sensors-detect script. | Install the neccessary packages. You will need perl to run the sensors-detect script. | ||
{{Cmd|apk_add lm_sensors perl}} | {{Cmd|apk_add lm_sensors lm_sensors-detect perl}} | ||
Load the i2c-dev module: | Load the i2c-dev module: | ||
Line 13: | Line 13: | ||
{{Cmd|sensors-detect}} | {{Cmd|sensors-detect}} | ||
There are multiple types of sensors that you must skip scanning for (answer "no" to the prompt) because grsec will not allow you to access /proc/port. If you encounter an error that says something like "/dev/port: no such file..", re-run the script and answer "no" to that question on the next attempt. Examples of ones that you must enter "no" for: ISA bus, other Super I/O sensors, and IPMI. | |||
Be sure to enter "yes" (non-default) for the question "Do you want to generate /etc/conf.d/lm_sensors?" | |||
You will not need perl anymore. Remove it before you forget. | You will not need perl anymore. Remove it before you forget. | ||
{{Cmd| | {{Cmd|apk_del lm_sensors-detect perl}} | ||
Make services start during next reboot. | Make services start during next reboot. | ||
{{Cmd| | {{Cmd|rc-update add lm_sensors default | ||
rc-update add sensord default}} | |||
Start services: | Start services: | ||
{{Cmd|/etc/init.d/lm_sensors start && /etc/init.d/sensord start}} | {{Cmd|/etc/init.d/lm_sensors start && /etc/init.d/sensord start}} | ||
Don't forget to save your new server configuration using {{Cmd|lbu commit}}. | |||
[[Category:Monitoring]] | [[Category:Monitoring]] |
Revision as of 15:27, 12 May 2012
This document is a short note on how to set up lm_sensors in Alpine.
Install the neccessary packages. You will need perl to run the sensors-detect script.
apk_add lm_sensors lm_sensors-detect perl
Load the i2c-dev module:
echo i2c-dev >> /etc/modules modprobe i2c-dev
Note: If you already know the name of the sensor module, you can modprobe it now, and skip the sensors-detect and perl install.
Run sensors detect:
sensors-detect
There are multiple types of sensors that you must skip scanning for (answer "no" to the prompt) because grsec will not allow you to access /proc/port. If you encounter an error that says something like "/dev/port: no such file..", re-run the script and answer "no" to that question on the next attempt. Examples of ones that you must enter "no" for: ISA bus, other Super I/O sensors, and IPMI.
Be sure to enter "yes" (non-default) for the question "Do you want to generate /etc/conf.d/lm_sensors?"
You will not need perl anymore. Remove it before you forget.
apk_del lm_sensors-detect perl
Make services start during next reboot.
rc-update add lm_sensors default rc-update add sensord default
Start services:
/etc/init.d/lm_sensors start && /etc/init.d/sensord start
Don't forget to save your new server configuration using
lbu commit
.