source: general/sysutils/lm_sensors.xml@ 14edcc9

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 14edcc9 was 14edcc9, checked in by Fernando de Oliveira <fernando@…>, 10 years ago

Update to lm_sensors-3.3.5, libvorbis 1.3.4 and SoundTouch 1.8.0.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@12623 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 11.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY lm_sensors-download-http
8 "http://dl.lm-sensors.org/lm-sensors/releases/lm_sensors-&lm_sensors-version;.tar.bz2">
9 <!ENTITY lm_sensors-download-ftp
10 "ftp://ftp.netroedge.com/pub/lm-sensors/lm_sensors-&lm_sensors-version;.tar.bz2">
11 <!ENTITY lm_sensors-md5sum "da506dedceb41822e64865f6ba34828a">
12 <!ENTITY lm_sensors-size "172 KB">
13 <!ENTITY lm_sensors-buildsize "2.3 MB">
14 <!ENTITY lm_sensors-time "less than 0.1 SBU">
15]>
16
17<sect1 id="lm_sensors" xreflabel="lm_sensors-&lm_sensors-version;">
18 <?dbhtml filename="lm_sensors.html"?>
19
20 <sect1info>
21 <othername>$LastChangedBy$</othername>
22 <date>$Date$</date>
23 </sect1info>
24
25 <title>lm_sensors-&lm_sensors-version;</title>
26
27 <indexterm zone="lm_sensors">
28 <primary sortas="a-lm_sensors">lm_sensors</primary>
29 </indexterm>
30
31 <sect2 role="package">
32 <title>Introduction to lm_sensors</title>
33
34 <para>
35 The <application>lm_sensors</application> package provides user-space
36 support for the hardware monitoring drivers in the Linux kernel.
37 This is useful for monitoring the temperature of the CPU and adjusting the
38 performance of some hardware (such as cooling fans).
39 </para>
40
41 &lfs74_checked;
42
43 <bridgehead renderas="sect3">Package Information</bridgehead>
44 <itemizedlist spacing="compact">
45 <listitem>
46 <para>
47 Download (HTTP): <ulink url="&lm_sensors-download-http;"/>
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download (FTP): <ulink url="&lm_sensors-download-ftp;"/>
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Download MD5 sum: &lm_sensors-md5sum;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Download size: &lm_sensors-size;
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Estimated disk space required: &lm_sensors-buildsize;
68 </para>
69 </listitem>
70 <listitem>
71 <para>
72 Estimated build time: &lm_sensors-time;
73 </para>
74 </listitem>
75 </itemizedlist>
76
77 <bridgehead renderas="sect3">lm_sensors Dependencies</bridgehead>
78
79 <bridgehead renderas="sect4">Required</bridgehead>
80 <para role="required">
81 <xref linkend="which"/>
82 </para>
83
84 <bridgehead renderas="sect4">Optional</bridgehead>
85 <para role="optional">
86 <ulink url="http://oss.oetiker.ch/rrdtool/">RRDtool (required to build the
87 <command>sensord</command> program)</ulink>
88 </para>
89
90 <para condition="html" role="usernotes">
91 User Notes: <ulink url="&blfs-wiki;/lm_sensors"/>
92 </para>
93 </sect2>
94
95 <sect2 role="kernel" id="lm_sensors-kernel">
96 <title>Kernel Configuration</title>
97
98 <para>
99 Getting your kernel config right is an iterative process that may require
100 that you recompile your kernel a couple of times. The simplest way to go
101 about it is to start by enabling modules and then compile everything that
102 may be needed by Lm Sensors as a module:
103 </para>
104
105<screen><literal>Top level
106 [*] Enable loadable module support ---&gt;
107
108Bus options (PCI etc.) ---&gt;
109 [*] PCI support
110
111Device Drivers ---&gt;
112 [*] I2C support
113 [*] I2C device interface
114 I2C Algorithms ---&gt;
115 &lt;M&gt; (configure all of them as modules)
116 I2C Hardware Bus support ---&gt;
117 &lt;M&gt; (configure all of them as modules)
118 I2C Hardware Bus support ---&gt;
119 &lt;M&gt; (configure all of them as modules)
120 [*] Hardware Monitoring support ---&gt;
121 &lt;M&gt; (configure all of them as modules)</literal></screen>
122
123 <para>
124 Recompile your kernel and reboot into the new kernel. Don't forget to
125 <command>make modules_install</command> We will come back to the kernel in
126 the Configuring section below.
127 </para>
128
129 <indexterm zone="lm_sensors lm_sensors-kernel">
130 <primary sortas="d-lm_sensors">lm_sensors</primary>
131 </indexterm>
132 </sect2>
133
134 <sect2 role="installation">
135 <title>Installation of lm_sensors</title>
136
137 <para>
138 Install <application>lm_sensors</application> by running the following
139 commands:
140 </para>
141
142<screen><userinput>make PREFIX=/usr \
143 BUILD_STATIC_LIB=0 \
144 MANDIR=/usr/share/man</userinput></screen>
145
146 <para>
147 This package does not come with a test suite.
148 </para>
149
150 <para>
151 Now, as the <systemitem class="username">root</systemitem> user:
152 </para>
153
154<screen role="root"><userinput>make PREFIX=/usr \
155 BUILD_STATIC_LIB=0 \
156 MANDIR=/usr/share/man install &amp;&amp;
157
158install -v -m755 -d /usr/share/doc/lm_sensors-&lm_sensors-version; &amp;&amp;
159cp -rv README INSTALL doc/* \
160 /usr/share/doc/lm_sensors-&lm_sensors-version;</userinput></screen>
161 </sect2>
162
163 <sect2 role="commands">
164 <title>Command Explanations</title>
165
166 <para>
167 <parameter>BUILD_STATIC_LIB=0</parameter>: This parameter disables
168 compiling and installing the static version of
169 <filename class="libraryfile">libsensors</filename>.
170 </para>
171
172 <para>
173 <parameter>PROG_EXTRA=sensord</parameter>: This parameter enables
174 compiling <command>sensord</command>, a daemon that can monitor your
175 system at regular intervals. Compiling <command>sensord</command> requires
176 <ulink url="http://oss.oetiker.ch/rrdtool/">RRDtool</ulink>. Compiling
177 RRDtool 1.4.6 requires a sed: <command>sed -i '/ sv_undef/d'
178 bindings/perl-shared/RRDs.xs</command>.
179 </para>
180
181 </sect2>
182
183 <sect2 role="configuration">
184 <title>Configuring Lm Sensors</title>
185
186 <sect3 id="lm_sensors-config">
187 <title>Config File</title>
188
189 <para>
190 <filename>/etc/sensors3.conf</filename>
191 </para>
192
193 <indexterm zone="lm_sensors lm_sensors-config">
194 <primary
195 sortas="e-etc-path-Configfilename2">/etc/sensors3.conf</primary>
196 </indexterm>
197
198 </sect3>
199
200 <sect3><title>Configuration Information</title>
201
202 <para>
203 To find out what hardware sensors your system has, issue the following
204 command as the <systemitem class="username">root</systemitem> user:
205 </para>
206
207<screen role="root"><userinput>sensors-detect</userinput></screen>
208
209 <para>
210 The appropriate modules should have been loaded and a summary is
211 displayed at the end. Now you know what is needed and you can recompile
212 your kernel to enable just the options you need (i.e., don't enable the
213 modules you cannot use).
214 </para>
215
216 </sect3>
217
218 </sect2>
219
220 <sect2 role="content">
221 <title>Contents</title>
222
223 <segmentedlist>
224 <segtitle>Installed Programs</segtitle>
225 <segtitle>Installed Library</segtitle>
226 <segtitle>Installed Directories</segtitle>
227
228 <seglistitem>
229 <seg>
230 fancontrol, isadump, isaset, pwmconfig, sensors, sensors-conf-convert,
231 sensors-detect, and optionally, sensord
232 </seg>
233 <seg>
234 libsensors.so
235 </seg>
236 <seg>
237 /etc/sensors.d,
238 /usr/include/sensors and
239 /usr/share/doc/lm_sensors-&lm_sensors-version;
240 </seg>
241 </seglistitem>
242 </segmentedlist>
243
244 <variablelist>
245 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
246 <?dbfo list-presentation="list"?>
247 <?dbhtml list-presentation="table"?>
248
249 <varlistentry id="fancontrol">
250 <term><command>fancontrol</command></term>
251 <listitem>
252 <para>
253 is a shell script for use with <application>lm_sensors</application>.
254 It reads its configuration from a file<!--what file?-->, then
255 calculates fan speeds from temperatures and sets the corresponding
256 PWM outputs to the computed values.
257 </para>
258 <indexterm zone="lm_sensors fancontrol">
259 <primary sortas="b-fancontrol">fancontrol</primary>
260 </indexterm>
261 </listitem>
262 </varlistentry>
263
264 <varlistentry id="isadump">
265 <term><command>isadump</command></term>
266 <listitem>
267 <para>
268 is a small helper program to examine registers visible through the
269 ISA bus. It is intended to probe any chip that lives on the ISA bus
270 working with an address register and a data register (I2C-like
271 access) or a flat range (of up to 256 bytes).
272 </para>
273 <indexterm zone="lm_sensors isadump">
274 <primary sortas="b-isadump">isadump</primary>
275 </indexterm>
276 </listitem>
277 </varlistentry>
278
279 <varlistentry id="isaset">
280 <term><command>isaset</command></term>
281 <listitem>
282 <para>
283 is a small helper program to set registers visible through the ISA
284 bus.
285 </para>
286 <indexterm zone="lm_sensors isaset">
287 <primary sortas="b-isaset">isaset</primary>
288 </indexterm>
289 </listitem>
290 </varlistentry>
291
292 <varlistentry id="pwmconfig">
293 <term><command>pwmconfig</command></term>
294 <listitem>
295 <para>
296 tests the pulse width modulation (PWM) outputs of sensors and
297 configures fancontrol.
298 </para>
299 <indexterm zone="lm_sensors pwmconfig">
300 <primary sortas="b-pwmconfig">pwmconfig</primary>
301 </indexterm>
302 </listitem>
303 </varlistentry>
304
305 <varlistentry id="sensors">
306 <term><command>sensors</command></term>
307 <listitem>
308 <para>
309 prints the current readings of all sensor chips.
310 </para>
311 <indexterm zone="lm_sensors sensors">
312 <primary sortas="b-sensors">sensors</primary>
313 </indexterm>
314 </listitem>
315 </varlistentry>
316
317 <varlistentry id="sensors-conf-convert">
318 <term><command>sensors-conf-convert</command></term>
319 <listitem>
320 <para>
321 is a <application>Perl</application> script to convert
322 <application>lm-sensors</application> version 2 configuration files
323 to work with version 3.
324 </para>
325 <indexterm zone="lm_sensors sensors-conf-convert">
326 <primary sortas="b-sensors-conf-convert">sensors-conf-convert</primary>
327 </indexterm>
328 </listitem>
329 </varlistentry>
330
331 <varlistentry id="sensors-detect">
332 <term><command>sensors-detect</command></term>
333 <listitem>
334 <para>
335 is a <application>Perl</application> script that will walk you
336 through the process of scanning your system for various hardware
337 monitoring chips (sensors) supported by
338 <filename class="libraryfile">libsensors</filename>, or more
339 generally by the <application>lm_sensors</application> tool suite.
340 </para>
341 <indexterm zone="lm_sensors sensors-detect">
342 <primary sortas="b-sensors-detect">sensors-detect</primary>
343 </indexterm>
344 </listitem>
345 </varlistentry>
346
347 <varlistentry id="libsensors">
348 <term><filename class="libraryfile">libsensors.so</filename></term>
349 <listitem>
350 <para>
351 contains the <application>lm_sensors</application> API functions.
352 </para>
353 <indexterm zone="lm_sensors libsensors">
354 <primary sortas="c-libsensors">libsensors.so</primary>
355 </indexterm>
356 </listitem>
357 </varlistentry>
358
359 </variablelist>
360
361 </sect2>
362
363</sect1>
Note: See TracBrowser for help on using the repository browser.