-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
R.Marek@sh.cvut.cz
authored and
Greg Kroah-Hartman
committed
Jun 22, 2005
1 parent
988cd6b
commit 053ee88
Showing
2 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 7f15b66468b7003d5241e352a007e73be5519b20 | ||
refs/heads/master: 828621dda6381093ceafbe9381b6118cae3f9b13 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
Introduction | ||
------------ | ||
|
||
Most mainboards have sensor chips to monitor system health (like temperatures, | ||
voltages, fans speed). They are often connected through an I2C bus, but some | ||
are also connected directly through the ISA bus. | ||
|
||
The kernel drivers make the data from the sensor chips available in the /sys | ||
virtual filesystem. Userspace tools are then used to display or set or the | ||
data in a more friendly manner. | ||
|
||
Lm-sensors | ||
---------- | ||
|
||
Core set of utilites that will allow you to obtain health information, | ||
setup monitoring limits etc. You can get them on their homepage | ||
http://www.lm-sensors.nu/ or as a package from your Linux distribution. | ||
|
||
If from website: | ||
Get lmsensors from project web site. Please note, you need only userspace | ||
part, so compile with "make user_install" target. | ||
|
||
General hints to get things working: | ||
|
||
0) get lm-sensors userspace utils | ||
1) compile all drivers in I2C section as modules in your kernel | ||
2) run sensors-detect script, it will tell you what modules you need to load. | ||
3) load them and run "sensors" command, you should see some results. | ||
4) fix sensors.conf, labels, limits, fan divisors | ||
5) if any more problems consult FAQ, or documentation | ||
|
||
Other utilites | ||
-------------- | ||
|
||
If you want some graphical indicators of system health look for applications | ||
like: gkrellm, ksensors, xsensors, wmtemp, wmsensors, wmgtemp, ksysguardd, | ||
hardware-monitor | ||
|
||
If you are server administrator you can try snmpd or mrtgutils. |