source: general/sysutils/pm-utils.xml@ adf6dd9a

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 adf6dd9a was 5d9021ea, checked in by Ken Moffat <ken@…>, 11 years ago

more tags

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

  • Property mode set to 100644
File size: 8.2 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 pm-utils-download-http "http://pm-utils.freedesktop.org/releases/pm-utils-&pm-utils-version;.tar.gz">
8 <!ENTITY pm-utils-download-ftp " ">
9 <!ENTITY pm-utils-md5sum "1742a556089c36c3a89eb1b957da5a60">
10 <!ENTITY pm-utils-size "204 KB">
11 <!ENTITY pm-utils-buildsize "1.6 MB">
12 <!ENTITY pm-utils-time "0.1 SBU">
13]>
14
15<sect1 id="pm-utils" xreflabel="pm-utils-&pm-utils-version;">
16 <?dbhtml filename="pm-utils.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy: igor $</othername>
20 <date>$Date: 2013-07-10 14:18:46 +0200 (Wed, 10 Jul 2013) $</date>
21 </sect1info>
22
23 <title>pm-utils-&pm-utils-version;</title>
24
25 <indexterm zone="pm-utils">
26 <primary sortas="a-pm-utils">pm-utils</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Power Management Utilities</title>
31
32 <para>
33 The <application>Power Management Utilities</application> is a small
34 collection of scripts to suspend and hibernate computer that can be used
35 to run user supplied scripts on suspend and resume.
36 </para>
37
38 &lfs74_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>
44 Download (HTTP): <ulink url="&pm-utils-download-http;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download (FTP): <ulink url="&pm-utils-download-ftp;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download MD5 sum: &pm-utils-md5sum;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download size: &pm-utils-size;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated disk space required: &pm-utils-buildsize;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated build time: &pm-utils-time;
70 </para>
71 </listitem>
72 </itemizedlist>
73
74 <bridgehead renderas="sect3">Power Management Utilities Dependencies</bridgehead>
75
76 <bridgehead renderas="sect4">Optional</bridgehead>
77 <para role="optional">
78 <xref linkend="xmlto"/> (to generate man pages)
79 </para>
80
81 <bridgehead renderas="sect4">Optional (runtime)</bridgehead>
82 <para role="optional">
83 <xref linkend="hdparm"/>,
84 <xref linkend="wireless_tools"/>,
85 <ulink url="https://www.kernel.org/pub/software/network/ethtool/">ethtool</ulink> and
86 <!-- both http://www.codon.org.uk/~mjg59/vbetool/ and
87 http://www.srcf.ucam.org/~mjg59/vbetool/ are down -->
88 <ulink url="http://ftp.de.debian.org/debian/pool/main/v/vbetool/">vbetool</ulink>
89 <!-- radeontool, deprecated? -->
90 </para>
91
92 <para condition="html" role="usernotes">User Notes:
93 <ulink url="&blfs-wiki;/pm-utils"/>
94 </para>
95 </sect2>
96
97 <sect2 role="installation">
98 <title>Installation of Power Management Utilities</title>
99
100 <para>
101 Install <application>Power Management Utilities</application> by
102 running the following commands:
103 </para>
104
105<screen><userinput>./configure --prefix=/usr --sysconfdir=/etc \
106 --docdir=/usr/share/doc/pm-utils-&pm-utils-version; &amp;&amp;
107make</userinput></screen>
108
109 <para>
110 This package does not come with a test suite.
111 </para>
112
113 <para>
114 Now, as the <systemitem class="username">root</systemitem> user:
115 </para>
116
117<screen role="root"><userinput>make install</userinput></screen>
118
119 <para>
120 If you don't have <xref linkend="xmlto"/> installed, copy pregenerated
121 man pages:
122 </para>
123
124<screen role="root"><userinput>install -v -m644 man/*.1 /usr/share/man/man1 &amp;&amp;
125install -v -m644 man/*.8 /usr/share/man/man8 &amp;&amp;
126ln -sv pm-action.8 /usr/share/man/man8/pm-suspend.8 &amp;&amp;
127ln -sv pm-action.8 /usr/share/man/man8/pm-hibernate.8 &amp;&amp;
128ln -sv pm-action.8 /usr/share/man/man8/pm-suspend-hybrid.8</userinput></screen>
129
130 </sect2>
131
132 <sect2 role="configuration">
133 <title>Configuring Power Management Utilities</title>
134
135 <para>
136 Suspend or resume functionality can be easily modified by installing files
137 into the /etc/pm/sleep.d directory. These files, known as hooks, are run
138 when the system is put into a sleep state or resumed. Default hooks are
139 located in /usr/lib/pm-utils/sleep.d, and user hooks should be put in
140 /etc/pm/sleep.d. See the pm-action(8) man page for more information.
141 </para>
142
143 </sect2>
144
145 <sect2 role="content">
146 <title>Contents</title>
147
148 <segmentedlist>
149 <segtitle>Installed Programs</segtitle>
150 <segtitle>Installed Libraries</segtitle>
151 <segtitle>Installed Directories</segtitle>
152
153 <seglistitem>
154 <seg>
155 on_ac_power, pm-hibernate, pm-is-supported, pm-powersave, pm-suspend
156 and pm-suspend-hybrid
157 </seg>
158 <seg>
159 None
160 </seg>
161 <seg>
162 /etc/pm, /usr/lib/pm-utils and
163 /usr/share/doc/pm-utils-&pm-utils-version;
164 </seg>
165 </seglistitem>
166 </segmentedlist>
167
168 <variablelist>
169 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
170 <?dbfo list-presentation="list"?>
171 <?dbhtml list-presentation="table"?>
172
173 <varlistentry id="on_ac_power">
174 <term><command>on_ac_power</command></term>
175 <listitem>
176 <para>
177 is a script that determines whether the system is running on AC
178 power (rather than a battery).
179 </para>
180 <indexterm zone="pm-utils on_ac_power">
181 <primary sortas="b-on_ac_power">on_ac_power</primary>
182 </indexterm>
183 </listitem>
184 </varlistentry>
185
186 <varlistentry id="pm-hibernate">
187 <term><command>pm-hibernate</command></term>
188 <listitem>
189 <para>
190 is a symlink to pm-action script that puts the computer into
191 hibernate mode (the system is fully powered off and system state is
192 saved to disk).
193 </para>
194 <indexterm zone="pm-utils pm-hibernate">
195 <primary sortas="b-pm-hibernate">pm-hibernate</primary>
196 </indexterm>
197 </listitem>
198 </varlistentry>
199
200 <varlistentry id="pm-is-supported">
201 <term><command>pm-is-supported</command></term>
202 <listitem>
203 <para>
204 is a script that checks whether power management features such as
205 suspend and hibernate are supported.
206 </para>
207 <indexterm zone="pm-utils pm-is-supported">
208 <primary sortas="b-pm-is-supported">pm-is-supported</primary>
209 </indexterm>
210 </listitem>
211 </varlistentry>
212
213 <varlistentry id="pm-powersave">
214 <term><command>pm-powersave</command></term>
215 <listitem>
216 <para>
217 is a script that puts the computer into powersaving (low power)
218 mode.
219 </para>
220 <indexterm zone="pm-utils pm-powersave">
221 <primary sortas="b-pm-powersave">pm-powersave</primary>
222 </indexterm>
223 </listitem>
224 </varlistentry>
225
226 <varlistentry id="pm-suspend">
227 <term><command>pm-suspend</command></term>
228 <listitem>
229 <para>
230 is a symlink to pm-action script that puts the computer into suspend
231 mode (most devices are shut down and system state is saved in RAM).
232 </para>
233 <indexterm zone="pm-utils pm-suspend">
234 <primary sortas="b-pm-suspend">pm-suspend</primary>
235 </indexterm>
236 </listitem>
237 </varlistentry>
238
239 <varlistentry id="pm-suspend-hybrid">
240 <term><command>pm-suspend-hybrid</command></term>
241 <listitem>
242 <para>
243 is a symlink to pm-action script that puts the computer into
244 hybrid-suspend mode (the system does everything it needs to
245 hibernate, but suspends instead of shutting down).
246 </para>
247 <indexterm zone="pm-utils pm-suspend-hybrid">
248 <primary sortas="b-pm-suspend-hybrid">pm-suspend-hybrid</primary>
249 </indexterm>
250 </listitem>
251 </varlistentry>
252
253 </variablelist>
254
255 </sect2>
256
257</sect1>
Note: See TracBrowser for help on using the repository browser.