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

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 fd4dbec was fd4dbec, checked in by Ken Moffat <ken@…>, 10 years ago

tags

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

  • Property mode set to 100644
File size: 8.7 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 &lfs75_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 <filename class="directory">/etc/pm/sleep.d</filename> directory.
138 These files, known as hooks, are run when the system is put into a sleep
139 state or resumed. Default hooks are located in <filename
140 class="directory">/usr/lib/pm-utils/sleep.d</filename>, and user hooks
141 should be put in <filename class="directory">/etc/pm/sleep.d</filename>.
142 See the pm-action(8) man page for more information.
143 </para>
144
145 <para>
146 In order to use hibernation with <application>GRUB</application> and a
147 swap partition, you need to add kernel parameter
148 <literal>resume=<replaceable>swap_partition</replaceable></literal> (i.e.
149 <literal>resume=/dev/sda1</literal>) to the kernel line in the
150 <filename>/boot/grub/grub.cfg</filename> configuration file.
151 </para>
152
153 </sect2>
154
155 <sect2 role="content">
156 <title>Contents</title>
157
158 <segmentedlist>
159 <segtitle>Installed Programs</segtitle>
160 <segtitle>Installed Libraries</segtitle>
161 <segtitle>Installed Directories</segtitle>
162
163 <seglistitem>
164 <seg>
165 on_ac_power, pm-hibernate, pm-is-supported, pm-powersave, pm-suspend
166 and pm-suspend-hybrid
167 </seg>
168 <seg>
169 None
170 </seg>
171 <seg>
172 /etc/pm, /usr/lib/pm-utils and
173 /usr/share/doc/pm-utils-&pm-utils-version;
174 </seg>
175 </seglistitem>
176 </segmentedlist>
177
178 <variablelist>
179 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
180 <?dbfo list-presentation="list"?>
181 <?dbhtml list-presentation="table"?>
182
183 <varlistentry id="on_ac_power">
184 <term><command>on_ac_power</command></term>
185 <listitem>
186 <para>
187 is a script that determines whether the system is running on AC
188 power (rather than a battery).
189 </para>
190 <indexterm zone="pm-utils on_ac_power">
191 <primary sortas="b-on_ac_power">on_ac_power</primary>
192 </indexterm>
193 </listitem>
194 </varlistentry>
195
196 <varlistentry id="pm-hibernate">
197 <term><command>pm-hibernate</command></term>
198 <listitem>
199 <para>
200 is a symlink to pm-action script that puts the computer into
201 hibernate mode (the system is fully powered off and system state is
202 saved to disk).
203 </para>
204 <indexterm zone="pm-utils pm-hibernate">
205 <primary sortas="b-pm-hibernate">pm-hibernate</primary>
206 </indexterm>
207 </listitem>
208 </varlistentry>
209
210 <varlistentry id="pm-is-supported">
211 <term><command>pm-is-supported</command></term>
212 <listitem>
213 <para>
214 is a script that checks whether power management features such as
215 suspend and hibernate are supported.
216 </para>
217 <indexterm zone="pm-utils pm-is-supported">
218 <primary sortas="b-pm-is-supported">pm-is-supported</primary>
219 </indexterm>
220 </listitem>
221 </varlistentry>
222
223 <varlistentry id="pm-powersave">
224 <term><command>pm-powersave</command></term>
225 <listitem>
226 <para>
227 is a script that puts the computer into powersaving (low power)
228 mode.
229 </para>
230 <indexterm zone="pm-utils pm-powersave">
231 <primary sortas="b-pm-powersave">pm-powersave</primary>
232 </indexterm>
233 </listitem>
234 </varlistentry>
235
236 <varlistentry id="pm-suspend">
237 <term><command>pm-suspend</command></term>
238 <listitem>
239 <para>
240 is a symlink to pm-action script that puts the computer into suspend
241 mode (most devices are shut down and system state is saved in RAM).
242 </para>
243 <indexterm zone="pm-utils pm-suspend">
244 <primary sortas="b-pm-suspend">pm-suspend</primary>
245 </indexterm>
246 </listitem>
247 </varlistentry>
248
249 <varlistentry id="pm-suspend-hybrid">
250 <term><command>pm-suspend-hybrid</command></term>
251 <listitem>
252 <para>
253 is a symlink to pm-action script that puts the computer into
254 hybrid-suspend mode (the system does everything it needs to
255 hibernate, but suspends instead of shutting down).
256 </para>
257 <indexterm zone="pm-utils pm-suspend-hybrid">
258 <primary sortas="b-pm-suspend-hybrid">pm-suspend-hybrid</primary>
259 </indexterm>
260 </listitem>
261 </varlistentry>
262
263 </variablelist>
264
265 </sect2>
266
267</sect1>
Note: See TracBrowser for help on using the repository browser.