source: general/sysutils/pm-utils.xml@ 5251abd7

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 5251abd7 was 5251abd7, checked in by Igor Živković <igor@…>, 10 years ago

add a note about pm-hibernate requirement

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

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