source: general/sysutils/elogind.xml@ 46c5976

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 9.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 46c5976 was 6735113, checked in by Ken Moffat <ken@…>, 5 years ago

Add to kernel config for elogind -
Suppress elogind-daemon[1242]: Failed to apply ACLs: Operation not supported
messages when switching between ttys.

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

  • Property mode set to 100644
File size: 10.3 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 elogind-download-http "https://github.com/elogind/elogind/archive/v&elogind-version;/elogind-&elogind-version;.tar.gz">
8 <!ENTITY elogind-download-ftp " ">
9 <!ENTITY elogind-md5sum "dbfebba271609fb5ea63073e2999466e">
10 <!ENTITY elogind-size "1.3 MB">
11 <!ENTITY elogind-buildsize "47 MB">
12 <!ENTITY elogind-time "0.2 SBU">
13]>
14
15<sect1 id="elogind" revision="sysv" xreflabel="elogind-&elogind-version;">
16 <?dbhtml filename="elogind.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>elogind-&elogind-version;</title>
24
25 <indexterm zone="elogind">
26 <primary sortas="a-elogind">elogind</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to elogind</title>
31
32 <para>
33 <application>elogind</application> is the
34 <application>systemd</application> project's "logind", extracted out to
35 be a standalone daemon. It integrates with <xref linkend="linux-pam"/>
36 to know the set of users that are logged in to a system and whether they
37 are logged in graphically, on the console, or remotely.
38 <application>Elogind</application> exposes this information via the
39 standard org.freedesktop.login1 <application>D-Bus</application>
40 interface, as well as through the file system using systemd's standard
41 <filename class="directory">/run/systemd</filename> layout.
42 </para>
43
44 &lfs90_checked;
45
46 <bridgehead renderas="sect3">Package Information</bridgehead>
47 <itemizedlist spacing="compact">
48 <listitem>
49 <para>
50 Download (HTTP): <ulink url="&elogind-download-http;"/>
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download (FTP): <ulink url="&elogind-download-ftp;"/>
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Download MD5 sum: &elogind-md5sum;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Download size: &elogind-size;
66 </para>
67 </listitem>
68 <listitem>
69 <para>
70 Estimated disk space required: &elogind-buildsize;
71 </para>
72 </listitem>
73 <listitem>
74 <para>
75 Estimated build time: &elogind-time;
76 </para>
77 </listitem>
78 </itemizedlist>
79
80 <bridgehead renderas="sect3">elogind Dependencies</bridgehead>
81
82 <bridgehead renderas="sect4">Required</bridgehead>
83 <para role="required">
84 <xref role="first" linkend="dbus"/>
85 </para>
86
87 <bridgehead renderas="sect4">Recommended</bridgehead>
88 <para role="recommended">
89 <xref linkend="DocBook"/>,
90 <xref linkend="docbook-xsl"/>, and
91 <xref linkend="libxslt"/> (to build the man pages),
92 <xref linkend="linux-pam"/>, and
93 <xref linkend="polkit" role="runtime"/> (runtime)
94 </para>
95
96 <bridgehead renderas="sect4">Optional</bridgehead>
97 <para role="optional">
98 For the tests:
99 <xref linkend="lxml"/>,
100 <xref linkend="gobject-introspection"/>,
101 <xref linkend="zsh"/>,
102 <xref linkend="valgrind"/>,
103 <ulink url="https://github.com/linux-audit/audit-userspace">
104 audit-userspace</ulink>,
105 <ulink url="https://github.com/scop/bash-completion">
106 bash-completion</ulink>,
107 <ulink url="https://mirrors.edge.kernel.org/pub/linux/utils/kernel/kexec/">
108 kexec</ulink>, and
109 <ulink url="http://www.selinuxproject.org/page/Main_Page">
110 SELinux</ulink>
111 </para>
112
113 <para condition="html" role="usernotes">User Notes:
114 <ulink url="&blfs-wiki;/elogind"/>
115 </para>
116 </sect2>
117
118 <sect2 role="kernel" id="elogind-kernel">
119 <title>Kernel Configuration</title>
120
121 <para>
122 Enable the following options in the kernel configuration and recompile the
123 kernel if necessary:
124 </para>
125
126<!-- Spaces are significant in <screen> sections -->
127<screen><literal>General setup ---&gt;
128 [*] Control Group support [CONFIG_CGROUPS]
129File systems ---&gt;
130 [*] Inotify support for userspace [CONFIG_INOTIFY_USER]
131 Pseudo filesystems ---&gt;
132 [*] Tmpfs POSIX Access Control Lists [CONFIG_TMPFS_POSIX_ACL]</literal></screen>
133
134 <indexterm zone="elogind elogind-kernel">
135 <primary sortas="d-elogind">elogind</primary>
136 </indexterm>
137 </sect2>
138
139 <sect2 role="installation">
140 <title>Installation of elogind</title>
141
142 <para>
143 Install <application>elogind</application> by running the following
144 commands:
145 </para>
146
147<screen><userinput>mkdir build &amp;&amp;
148cd build &amp;&amp;
149
150meson --prefix=/usr \
151 --sysconfdir=/etc \
152 --localstatedir=/var \
153 -Dcgroup-controller=elogind \
154 -Ddbuspolicydir=/etc/dbus-1/system.d \
155 .. &amp;&amp;
156ninja</userinput></screen>
157
158 <para>
159 This package does not come with a test suite.
160 </para>
161
162 <para>
163 Now, as the <systemitem class="username">root</systemitem> user:
164 </para>
165
166<screen role="root"><userinput>ninja install &amp;&amp;
167ln -sfv libelogind.pc /usr/lib/pkgconfig/libsystemd.pc &amp;&amp;
168ln -sfvn elogind /usr/include/systemd</userinput></screen>
169
170 </sect2>
171
172 <sect2 role="commands">
173 <title>Command Explanations</title>
174
175 <para>
176 <parameter>-Dcgroup-controller=elogind</parameter>: This switch ensures
177 that <application>elogind</application> is selected as the cgroup
178 controller, even if booted with another running cgroup controller.
179 </para>
180
181 <para>
182 <parameter>-Ddbuspolicydir=/etc/dbus-1/system.d</parameter>: This switch
183 sets the location of the <application>D-Bus</application> policy
184 directory.
185 </para>
186
187 <para>
188 <command>ln -s ...</command>: These commands install symlinks so that
189 software packages find systemd compatible library and headers.
190 </para>
191
192 </sect2>
193
194 <sect2 role="configuration">
195 <title>Configuring elogind</title>
196
197 <para revision="sysv">
198 To automatically start <command>elogind</command> when the
199 system is rebooted, install the
200 <filename>/etc/rc.d/init.d/mountcgroupfs</filename> and
201 <filename>/etc/rc.d/init.d/elogind</filename> bootscripts from the
202 <xref linkend="bootscripts"/> package.
203 </para>
204
205 <indexterm zone="elogind elogind">
206 <primary sortas="f-elogind">elogind</primary>
207 </indexterm>
208
209<screen role="root"><userinput>make install-elogind</userinput></screen>
210
211 <para>
212 Note that this boot script only starts the system-wide
213 <application>elogind</application> daemon. Each user will also need to
214 register a user session using <application>Linux-PAM</application> at
215 login. The <filename>/etc/pam.d/system-session</filename> file needs to
216 be modified and a new file needs to be created in order for
217 <command>elogind</command> to work correctly. Run the following
218 commands as the <systemitem class="username">root</systemitem> user:
219 </para>
220
221<screen role="root"><userinput>cat &gt;&gt; /etc/pam.d/system-session &lt;&lt; "EOF" &amp;&amp;
222<literal># Begin elogind addition
223
224session required pam_loginuid.so
225session optional pam_elogind.so
226
227# End elogind addition</literal>
228EOF
229cat &gt; /etc/pam.d/elogind-user &lt;&lt; "EOF"
230<literal># Begin /etc/pam.d/elogind-user
231
232account required pam_access.so
233account include system-account
234
235session required pam_env.so
236session required pam_limits.so
237session required pam_unix.so
238session required pam_loginuid.so
239session optional pam_keyinit.so force revoke
240session optional pam_elogind.so
241
242auth required pam_deny.so
243password required pam_deny.so
244
245# End /etc/pam.d/elogind-user</literal>
246EOF</userinput></screen>
247
248 </sect2>
249
250 <sect2 role="content" revision="sysv">
251 <title>Contents</title>
252
253 <segmentedlist>
254 <segtitle>Installed Programs</segtitle>
255 <segtitle>Installed Library</segtitle>
256 <segtitle>Installed Directories</segtitle>
257
258 <seglistitem>
259 <seg>
260 busctl,
261 elogind-inhibit, and
262 loginctl
263 </seg>
264 <seg>
265 libelogind.so
266 </seg>
267 <seg>
268 /etc/elogind,
269 /usr/include/elogind, and
270 /usr/share/doc/elogind-&elogind-version;
271 </seg>
272 </seglistitem>
273 </segmentedlist>
274
275 <variablelist>
276 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
277 <?dbfo list-presentation="list"?>
278 <?dbhtml list-presentation="table"?>
279
280 <varlistentry id="busctl">
281 <term><command>busctl</command></term>
282 <listitem>
283 <para>
284 is used to introspect and monitor the D-Bus bus.
285 </para>
286 <indexterm zone="elogind busctl">
287 <primary sortas="b-busctl">busctl</primary>
288 </indexterm>
289 </listitem>
290 </varlistentry>
291
292 <varlistentry id="elogind-inhibit">
293 <term><command>elogind-inhibit</command></term>
294 <listitem>
295 <para>
296 is used to execute a program with a shutdown, sleep or idle
297 inhibitor lock taken.
298 </para>
299 <indexterm zone="elogind elogind-inhibit">
300 <primary sortas="b-elogind-inhibit">elogind-inhibit</primary>
301 </indexterm>
302 </listitem>
303 </varlistentry>
304
305 <varlistentry id="loginctl">
306 <term><command>loginctl</command></term>
307 <listitem>
308 <para>
309 is used to introspect and control the state of the elogind Login
310 Manager.
311 </para>
312 <indexterm zone="elogind loginctl">
313 <primary sortas="b-loginctl">loginctl</primary>
314 </indexterm>
315 </listitem>
316 </varlistentry>
317
318 <varlistentry id="libelogind">
319 <term><filename class="libraryfile">libelogind.so</filename></term>
320 <listitem>
321 <para>
322 is the main elogind utility library.
323 </para>
324 <indexterm zone="elogind libelogind">
325 <primary sortas="c-libelogind">libelogind.so</primary>
326 </indexterm>
327 </listitem>
328 </varlistentry>
329
330 </variablelist>
331
332 </sect2>
333
334</sect1>
335
Note: See TracBrowser for help on using the repository browser.