source: chapter06/systemd.xml@ bd9829c

7.7-systemd 7.8-systemd 7.9-systemd
Last change on this file since bd9829c was bd9829c, checked in by Krejzi <krejzi@…>, 9 years ago

Hopefully fix the systemd testsuite.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd@10835 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 25.8 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
8<sect1 id="ch-system-systemd" role="wrap">
9 <?dbhtml filename="systemd.html"?>
10
11 <sect1info condition="script">
12 <productname>systemd</productname>
13 <productnumber>&systemd-version;</productnumber>
14 <address>&systemd-url;</address>
15 </sect1info>
16
17 <title>Systemd-&systemd-version;</title>
18
19 <indexterm zone="ch-system-systemd">
20 <primary sortas="a-systemd">systemd</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
25
26 <para>The systemd package contains programs for controlling the startup,
27 running, and shutdown of the system.</para>
28
29 <segmentedlist>
30 <segtitle>&buildtime;</segtitle>
31 <segtitle>&diskspace;</segtitle>
32
33 <seglistitem>
34 <seg>&systemd-ch6-sbu;</seg>
35 <seg>&systemd-ch6-du;</seg>
36 </seglistitem>
37 </segmentedlist>
38 </sect2>
39
40 <sect2 role="installation">
41 <title>Installation of systemd</title>
42
43 <para>First, create a file to allow systemd to build when using Util-Linux
44 built in Chapter 5 and disable LTO by default:</para>
45
46<screen><userinput remap="pre">cat &gt; config.cache &lt;&lt; "EOF"
47<literal>KILL=/bin/kill
48HAVE_BLKID=1
49BLKID_LIBS="-lblkid"
50BLKID_CFLAGS="-I/tools/include/blkid"
51HAVE_LIBMOUNT=1
52MOUNT_LIBS="-lmount"
53MOUNT_CFLAGS="-I/tools/include/libmount"
54cc_cv_CFLAGS__flto=no</literal>
55EOF</userinput></screen>
56
57 <para>LTO is disabled by default because it causes <command>systemd</command>
58 and other auxiliary programs to link to <filename
59 class="libraryfile">libgcc_s.so</filename>, slows the build down and makes the
60 compiled code larger.</para>
61
62 <para>Additionally, fix a build error when using Util-Linux built in
63 Chapter 5:</para>
64
65<screen><userinput remap="pre">sed -i "s:blkid/::" $(grep -rl "blkid/blkid.h")</userinput></screen>
66
67 <para>Apply the following patch so that compat <command>pkg-config</command> files
68 get installed without installing compat libs which are useless on LFS:</para>
69
70<screen><userinput remap="pre">patch -Np1 -i ../&systemd-compat-patch;</userinput></screen>
71
72 <para>Disable a test case that always fails:</para>
73
74<screen><userinput remap="pre">sed -i "s:test/udev-test.pl ::g" Makefile.in</userinput></screen>
75
76 <para>Prepare systemd for compilation:</para>
77
78<screen><userinput remap="configure">./configure --prefix=/usr \
79 --sysconfdir=/etc \
80 --localstatedir=/var \
81 --config-cache \
82 --with-rootprefix= \
83 --with-rootlibdir=/lib \
84 --enable-split-usr \
85 --disable-gudev \
86 --disable-firstboot \
87 --disable-ldconfig \
88 --disable-sysusers \
89 --without-python \
90 --docdir=/usr/share/doc/systemd-&systemd-version; \
91 --with-dbuspolicydir=/etc/dbus-1/system.d \
92 --with-dbusinterfacedir=/usr/share/dbus-1/interfaces \
93 --with-dbussessionservicedir=/usr/share/dbus-1/services \
94 --with-dbussystemservicedir=/usr/share/dbus-1/system-services</userinput></screen>
95
96 <variablelist>
97 <title>The meaning of the configure options:</title>
98
99 <varlistentry>
100 <term><parameter>--config-cache</parameter></term>
101 <listitem>
102 <para>This switch tells the build system to use
103 the <filename>config.cache</filename> file which
104 was created earlier.</para>
105 </listitem>
106 </varlistentry>
107
108 <varlistentry>
109 <term><parameter>--with-root*</parameter></term>
110 <listitem>
111 <para>These switches ensure that core programs and
112 shared libraries are installed in the subdirectories
113 of the root partition.</para>
114 </listitem>
115 </varlistentry>
116
117 <varlistentry>
118 <term><parameter>--enable-split-usr</parameter></term>
119 <listitem>
120 <para>This switch ensures that systemd will work on
121 systems where /bin, /lib and /sbin directories are not
122 symlinks to their /usr counterparts.</para>
123 </listitem>
124 </varlistentry>
125
126 <varlistentry>
127 <term><parameter>--disable-gudev --without-python</parameter></term>
128 <listitem>
129 <para>These switches disable optional features because
130 LFS does not provide their dependencies.</para>
131 </listitem>
132 </varlistentry>
133
134 <varlistentry>
135 <term><parameter>--disable-firstboot</parameter></term>
136 <listitem>
137 <para>This switch prevents installation of systemd
138 services responsible for setting up the system for
139 the first time. They are not useful for LFS because
140 everything is done manually.</para>
141 </listitem>
142 </varlistentry>
143
144 <varlistentry>
145 <term><parameter>--disable-ldconfig</parameter></term>
146 <listitem>
147 <para>This switch prevents installation of a systemd
148 unit that runs <command>ldconfig</command> at
149 boot, making the boot time longer. Remove it if the
150 described feature is desired, even though it's not
151 useful for source distributions such as LFS.</para>
152 </listitem>
153 </varlistentry>
154
155 <varlistentry>
156 <term><parameter>--disable-sysusers</parameter></term>
157 <listitem>
158 <para>This switch prevents installation of systemd
159 services responsible for setting up the
160 <filename>/etc/group</filename> and
161 <filename>/etc/passwd</filename> files. Both files
162 were created early in this chapter.</para>
163 </listitem>
164 </varlistentry>
165
166 <varlistentry>
167 <term><parameter>--with-dbus*</parameter></term>
168 <listitem>
169 <para>These switches ensure that D-Bus configuration files
170 get installed in the correct locations.</para>
171 </listitem>
172 </varlistentry>
173
174 </variablelist>
175
176 <para>Compile the package:</para>
177
178<screen><userinput remap="make">make LIBRARY_PATH=/tools/lib</userinput></screen>
179
180 <para>This package has a test suite, but it can only be run after the
181 package has been installed.</para>
182
183 <para>Install the package:</para>
184
185<screen><userinput remap="install">make LD_LIBRARY_PATH=/tools/lib install</userinput></screen>
186
187 <para>Move NSS libraries to <filename class="directory">/lib</filename>:</para>
188
189<screen><userinput remap="install">mv -v /usr/lib/libnss_{myhostname,mymachines,resolve}.so.2 /lib</userinput></screen>
190
191 <para>Remove an unnecessary directory:</para>
192
193<screen><userinput remap="install">rm -rfv /usr/lib/rpm</userinput></screen>
194
195 <para>Create the Sysvinit compatibility symlinks, so systemd is used
196 as the default init system:</para>
197
198<screen><userinput remap="install">for tool in runlevel reboot shutdown poweroff halt telinit; do
199 ln -sfv ../bin/systemctl /sbin/${tool}
200done
201ln -sfv ../lib/systemd/systemd /sbin/init</userinput></screen>
202
203 <para>Remove a reference to a non-existent group:</para>
204
205<screen><userinput remap="install">sed -i "s:0775 root lock:0755 root root:g" /usr/lib/tmpfiles.d/legacy.conf</userinput></screen>
206
207 <para>Create the <filename>/etc/machine-id</filename> file needed by
208 <command>systemd-journald</command>:</para>
209
210<screen><userinput remap="install">systemd-machine-id-setup</userinput></screen>
211
212 <para>Since the testsuite largely depends on the host system kernel
213 configuration, some tests may fail. It also needs a modification in
214 order not to look for a program that will be installed by Util-Linux
215 package later in this chapter. To test the results, issue:</para>
216
217<screen><userinput remap="test">sed -i "s:minix:ext4:g" src/test/test-path-util.c
218make LD_LIBRARY_PATH=/tools/lib -k check</userinput></screen>
219
220 </sect2>
221
222 <sect2 id="contents-systemd" role="content">
223 <title>Contents of systemd</title>
224
225 <segmentedlist>
226 <segtitle>Installed programs</segtitle>
227 <segtitle>Installed libraries</segtitle>
228 <segtitle>Installed directories</segtitle>
229
230 <seglistitem>
231 <seg>bootctl, busctl, coredumpctl, halt, hostnamectl, init, journalctl,
232 kernel-install, localectl, loginctl, machinectl, networkctl, poweroff,
233 reboot, runlevel, shutdown, systemctl, systemd-analyze,
234 systemd-ask-password, systemd-cat, systemd-cgls, systemd-cgtop,
235 systemd-delta, systemd-detect-virt, systemd-escape, systemd-inhibit,
236 systemd-machine-id-setup, systemd-notify, systemd-nspawn, systemd-path,
237 systemd-run, systemd-stdio-bridge, systemd-tmpfiles,
238 systemd-tty-ask-password-agent, telinit, timedatectl, and udevadm</seg>
239 <seg>libnss_myhostname.so.2, libnss_mymachines.so.2, libnss_resolve.so.2,
240 libsystemd.so, and libudev.so</seg>
241 <seg>/etc/binfmt.d, /etc/init.d, /etc/kernel, /etc/modules-load.d,
242 /etc/sysctl.d, /etc/systemd, /etc/tmpfiles.d, /etc/udev,
243 /etc/xdg/systemd, /lib/systemd, /lib/udev, /usr/include/systemd,
244 /usr/lib/binfmt.d, /usr/lib/kernel, /usr/lib/modules-load.d,
245 /usr/lib/sysctl.d, /usr/lib/systemd, /usr/lib/tmpfiles.d,
246 /usr/share/doc/systemd-&systemd-version;, /usr/share/factory,
247 /usr/share/systemd, /var/lib/systemd, /var/log/journal</seg>
248 </seglistitem>
249 </segmentedlist>
250
251 <variablelist>
252 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
253 <?dbfo list-presentation="list"?>
254 <?dbhtml list-presentation="table"?>
255
256 <varlistentry id="bootctl">
257 <term><command>bootctl</command></term>
258 <listitem>
259 <para>used to query the firmware and boot manager settings</para>
260 <indexterm zone="ch-system-systemd bootctl">
261 <primary sortas="b-bootctl">bootctl</primary>
262 </indexterm>
263 </listitem>
264 </varlistentry>
265
266 <varlistentry id="busctl">
267 <term><command>busctl</command></term>
268 <listitem>
269 <para>Used to introspect and monitor the D-Bus bus</para>
270 <indexterm zone="ch-system-systemd busctl">
271 <primary sortas="b-busctl">busctl</primary>
272 </indexterm>
273 </listitem>
274 </varlistentry>
275
276 <varlistentry id="coredumpctl">
277 <term><command>coredumpctl</command></term>
278 <listitem>
279 <para>Used to retrieve coredumps from the systemd Journal</para>
280 <indexterm zone="ch-system-systemd coredumpctl">
281 <primary sortas="b-coredumpctl">coredumpctl</primary>
282 </indexterm>
283 </listitem>
284 </varlistentry>
285
286 <varlistentry id="halt">
287 <term><command>halt</command></term>
288 <listitem>
289 <para>Normally invokes <command>shutdown</command> with the
290 <parameter>-h</parameter> option, except when already in run-level 0,
291 then it tells the kernel to halt the system; it notes in the
292 file <filename>/var/log/wtmp</filename> that the system is being
293 brought down</para>
294 <indexterm zone="ch-system-systemd halt">
295 <primary sortas="b-halt">halt</primary>
296 </indexterm>
297 </listitem>
298 </varlistentry>
299
300 <varlistentry id="hostnamectl">
301 <term><command>hostnamectl</command></term>
302 <listitem>
303 <para>Used to query and change the system hostname and related
304 settings</para>
305 <indexterm zone="ch-system-systemd hostnamectl">
306 <primary sortas="b-hostnamectl">hostnamectl</primary>
307 </indexterm>
308 </listitem>
309 </varlistentry>
310
311 <varlistentry id="init">
312 <term><command>init</command></term>
313 <listitem>
314 <para>The first process to be started when the kernel has initialized
315 the hardware which takes over the boot process and starts all the
316 proceses it is instructed to</para>
317 <indexterm zone="ch-system-systemd init">
318 <primary sortas="b-init">init</primary>
319 </indexterm>
320 </listitem>
321 </varlistentry>
322
323 <varlistentry id="journalctl">
324 <term><command>journalctl</command></term>
325 <listitem>
326 <para>Used to query the contents of the systemd Journal</para>
327 <indexterm zone="ch-system-systemd journalctl">
328 <primary sortas="b-journalctl">journalctl</primary>
329 </indexterm>
330 </listitem>
331 </varlistentry>
332
333 <varlistentry id="kernel-install">
334 <term><command>kernel-install</command></term>
335 <listitem>
336 <para>Used to add and remove kernel and initramfs images to and
337 from /boot</para>
338 <indexterm zone="ch-system-systemd kernel-install">
339 <primary sortas="b-kernel-install">kernel-install</primary>
340 </indexterm>
341 </listitem>
342 </varlistentry>
343
344 <varlistentry id="localectl">
345 <term><command>localectl</command></term>
346 <listitem>
347 <para>Used to query and change the system locale and keyboard layout
348 settings</para>
349 <indexterm zone="ch-system-systemd localectl">
350 <primary sortas="b-localectl">localectl</primary>
351 </indexterm>
352 </listitem>
353 </varlistentry>
354
355 <varlistentry id="loginctl">
356 <term><command>loginctl</command></term>
357 <listitem>
358 <para>Used to introspect and control the state of the systemd Login
359 Manager</para>
360 <indexterm zone="ch-system-systemd loginctl">
361 <primary sortas="b-loginctl">loginctl</primary>
362 </indexterm>
363 </listitem>
364 </varlistentry>
365
366 <varlistentry id="machinectl">
367 <term><command>machinectl</command></term>
368 <listitem>
369 <para>Used to introspect and control the state of the systemd Virtual
370 Machine and Container Registration Manager</para>
371 <indexterm zone="ch-system-systemd machinectl">
372 <primary sortas="b-machinectl">machinectl</primary>
373 </indexterm>
374 </listitem>
375 </varlistentry>
376
377 <varlistentry id="poweroff">
378 <term><command>poweroff</command></term>
379 <listitem>
380 <para>Tells the kernel to halt the system and switch off the computer
381 (see <command>halt</command>)</para>
382 <indexterm zone="ch-system-systemd poweroff">
383 <primary sortas="b-poweroff">poweroff</primary>
384 </indexterm>
385 </listitem>
386 </varlistentry>
387
388 <varlistentry id="reboot">
389 <term><command>reboot</command></term>
390 <listitem>
391 <para>Tells the kernel to reboot the system (see
392 <command>halt</command>)</para>
393 <indexterm zone="ch-system-systemd reboot">
394 <primary sortas="b-reboot">reboot</primary>
395 </indexterm>
396 </listitem>
397 </varlistentry>
398
399 <varlistentry id="runlevel">
400 <term><command>runlevel</command></term>
401 <listitem>
402 <para>Reports the previous and the current run-level, as noted in the
403 last run-level record in <filename>/var/run/utmp</filename></para>
404 <indexterm zone="ch-system-systemd runlevel">
405 <primary sortas="b-runlevel">runlevel</primary>
406 </indexterm>
407 </listitem>
408 </varlistentry>
409
410 <varlistentry id="shutdown">
411 <term><command>shutdown</command></term>
412 <listitem>
413 <para>Brings the system down in a secure way, signaling all processes
414 and notifying all logged-in users</para>
415 <indexterm zone="ch-system-systemd shutdown">
416 <primary sortas="b-shutdown">shutdown</primary>
417 </indexterm>
418 </listitem>
419 </varlistentry>
420
421 <varlistentry id="systemctl">
422 <term><command>systemctl</command></term>
423 <listitem>
424 <para>Used to introspect and control the state of the systemd system and
425 service manager</para>
426 <indexterm zone="ch-system-systemd systemctl">
427 <primary sortas="b-systemctl">systemctl</primary>
428 </indexterm>
429 </listitem>
430 </varlistentry>
431
432 <varlistentry id="systemd-analyze">
433 <term><command>systemd-analyze</command></term>
434 <listitem>
435 <para>Used to determine system boot-up performance of the current boot
436 </para>
437 <indexterm zone="ch-system-systemd systemd-analyze">
438 <primary sortas="b-systemd-analyze">systemd-analyze</primary>
439 </indexterm>
440 </listitem>
441 </varlistentry>
442
443 <varlistentry id="systemd-ask-password">
444 <term><command>systemd-ask-password</command></term>
445 <listitem>
446 <para>Used to query a system password or passphrase from the user, using a
447 question message specified on the command line</para>
448 <indexterm zone="ch-system-systemd systemd-ask-password">
449 <primary sortas="b-systemd-ask-password">systemd-ask-password</primary>
450 </indexterm>
451 </listitem>
452 </varlistentry>
453
454 <varlistentry id="systemd-cat">
455 <term><command>systemd-cat</command></term>
456 <listitem>
457 <para>Used to connect STDOUT and STDERR of a process with the Journal
458 </para>
459 <indexterm zone="ch-system-systemd systemd-cat">
460 <primary sortas="b-systemd-cat">systemd-cat</primary>
461 </indexterm>
462 </listitem>
463 </varlistentry>
464
465 <varlistentry id="systemd-cgls">
466 <term><command>systemd-cgls</command></term>
467 <listitem>
468 <para>Recursively shows the contents of the selected Linux control group
469 hierarchy in a tree</para>
470 <indexterm zone="ch-system-systemd systemd-cgls">
471 <primary sortas="b-systemd-cgls">systemd-cgls</primary>
472 </indexterm>
473 </listitem>
474 </varlistentry>
475
476 <varlistentry id="systemd-cgtop">
477 <term><command>systemd-cgtop</command></term>
478 <listitem>
479 <para>Shows the top control groups of the local Linux control group hierarchy,
480 ordered by their CPU, memory and disk I/O load</para>
481 <indexterm zone="ch-system-systemd systemd-cgtop">
482 <primary sortas="b-systemd-cgtop">systemd-cgtop</primary>
483 </indexterm>
484 </listitem>
485 </varlistentry>
486
487 <varlistentry id="systemd-delta">
488 <term><command>systemd-delta</command></term>
489 <listitem>
490 <para>Used to identify and compare configuration files in
491 <filename class="directory">/etc</filename> that override default
492 counterparts in <filename class="directory">/usr</filename></para>
493 <indexterm zone="ch-system-systemd systemd-delta">
494 <primary sortas="b-systemd-delta">systemd-delta</primary>
495 </indexterm>
496 </listitem>
497 </varlistentry>
498
499 <varlistentry id="systemd-detect-virt">
500 <term><command>systemd-detect-virt</command></term>
501 <listitem>
502 <para>Detects execution in a virtualized environment</para>
503 <indexterm zone="ch-system-systemd systemd-detect-virt">
504 <primary sortas="b-systemd-detect-virt">systemd-detect-virt</primary>
505 </indexterm>
506 </listitem>
507 </varlistentry>
508
509 <varlistentry id="systemd-escape">
510 <term><command>systemd-escape</command></term>
511 <listitem>
512 <para>Used to escape strings for inclusion in systemd unit names</para>
513 <indexterm zone="ch-system-systemd systemd-escape">
514 <primary sortas="b-systemd-escape">systemd-escape</primary>
515 </indexterm>
516 </listitem>
517 </varlistentry>
518
519 <varlistentry id="systemd-inhibit">
520 <term><command>systemd-inhibit</command></term>
521 <listitem>
522 <para>Used to execute a program with a shutdown, sleep or idle inhibitor lock
523 taken</para>
524 <indexterm zone="ch-system-systemd systemd-inhibit">
525 <primary sortas="b-systemd-inhibit">systemd-inhibit</primary>
526 </indexterm>
527 </listitem>
528 </varlistentry>
529
530 <varlistentry id="systemd-machine-id-setup">
531 <term><command>systemd-machine-id-setup</command></term>
532 <listitem>
533 <para>Used by system installer tools to initialize the machine ID stored in
534 <filename>/etc/machine-id</filename> at install time with a randomly
535 generated ID</para>
536 <indexterm zone="ch-system-systemd systemd-machine-id-setup">
537 <primary sortas="b-systemd-machine-id-setup">systemd-machine-id-setup</primary>
538 </indexterm>
539 </listitem>
540 </varlistentry>
541
542 <varlistentry id="systemd-notify">
543 <term><command>systemd-notify</command></term>
544 <listitem>
545 <para>Used by daemon scripts to notify the init system about status changes
546 </para>
547 <indexterm zone="ch-system-systemd systemd-notify">
548 <primary sortas="b-systemd-notify">systemd-notify</primary>
549 </indexterm>
550 </listitem>
551 </varlistentry>
552
553 <varlistentry id="systemd-nspawn">
554 <term><command>systemd-nspawn</command></term>
555 <listitem>
556 <para>Used to run a command or OS in a light-weight namespace container</para>
557 <indexterm zone="ch-system-systemd systemd-nspawn">
558 <primary sortas="b-systemd-nspawn">systemd-nspawn</primary>
559 </indexterm>
560 </listitem>
561 </varlistentry>
562
563 <varlistentry id="systemd-path">
564 <term><command>systemd-path</command></term>
565 <listitem>
566 <para>Used to query system and user paths</para>
567 <indexterm zone="ch-system-systemd systemd-path">
568 <primary sortas="b-systemd-path">systemd-path</primary>
569 </indexterm>
570 </listitem>
571 </varlistentry>
572
573 <varlistentry id="systemd-run">
574 <term><command>systemd-run</command></term>
575 <listitem>
576 <para>Used to create and start a transient .service or a .scope unit and
577 run the specified command in it</para>
578 <indexterm zone="ch-system-systemd systemd-run">
579 <primary sortas="b-systemd-run">systemd-run</primary>
580 </indexterm>
581 </listitem>
582 </varlistentry>
583
584 <!-- <varlistentry id="systemd-stdio-bridge">
585 <term><command>systemd-stdio-bridge</command></term>
586 <listitem>
587 <para>To be completed</para>
588 <indexterm zone="ch-system-systemd systemd-stdio-bridge">
589 <primary sortas="b-systemd-stdio-bridge">systemd-stdio-bridge</primary>
590 </indexterm>
591 </listitem>
592 </varlistentry> -->
593
594 <varlistentry id="systemd-tmpfiles">
595 <term><command>systemd-tmpfiles</command></term>
596 <listitem>
597 <para>Creates, deletes and cleans up volatile and temporary files and directories,
598 based on the configuration file format and location specified in
599 <filename class="directory">tmpfiles.d</filename> directories</para>
600 <indexterm zone="ch-system-systemd systemd-tmpfiles">
601 <primary sortas="b-systemd-tmpfiles">systemd-tmpfiles</primary>
602 </indexterm>
603 </listitem>
604 </varlistentry>
605
606 <varlistentry id="systemd-tty-ask-password-agent">
607 <term><command>systemd-tty-ask-password-agent</command></term>
608 <listitem>
609 <para>Used to list or process pending systemd password requests</para>
610 <indexterm zone="ch-system-systemd systemd-tty-ask-password-agent">
611 <primary sortas="b-systemd-tty-ask-password-agent">systemd-tty-ask-password-agent</primary>
612 </indexterm>
613 </listitem>
614 </varlistentry>
615
616 <varlistentry id="telinit">
617 <term><command>telinit</command></term>
618 <listitem>
619 <para>Tells <command>init</command> which run-level to change to</para>
620 <indexterm zone="ch-system-systemd telinit">
621 <primary sortas="b-telinit">telinit</primary>
622 </indexterm>
623 </listitem>
624 </varlistentry>
625
626 <varlistentry id="timedatectl">
627 <term><command>timedatectl</command></term>
628 <listitem>
629 <para>Used to query and change the system clock and its settings
630 </para>
631 <indexterm zone="ch-system-systemd timedatectl">
632 <primary sortas="b-timedatectl">timedatectl</primary>
633 </indexterm>
634 </listitem>
635 </varlistentry>
636
637 <varlistentry id="udevadm">
638 <term><command>udevadm</command></term>
639 <listitem>
640 <para>Generic Udev administration tool: controls the udevd daemon,
641 provides info from the Udev database, monitors uevents, waits for
642 uevents to finish, tests Udev configuration, and triggers uevents
643 for a given device</para>
644 <indexterm zone="ch-system-systemd udevadm">
645 <primary sortas="b-udevadm">udevadm</primary>
646 </indexterm>
647 </listitem>
648 </varlistentry>
649
650 <varlistentry id="libsystemd">
651 <term><filename class="libraryfile">libsystemd</filename></term>
652 <listitem>
653 <para>systemd utility library</para>
654 <indexterm zone="ch-system-systemd libsystemd">
655 <primary sortas="c-libsystemd">libsystemd</primary>
656 </indexterm>
657 </listitem>
658 </varlistentry>
659
660 <varlistentry id="libudev">
661 <term><filename class="libraryfile">libudev</filename></term>
662 <listitem>
663 <para>A library to access Udev device information</para>
664 <indexterm zone="ch-system-systemd libudev">
665 <primary sortas="c-libudev">libudev</primary>
666 </indexterm>
667 </listitem>
668 </varlistentry>
669
670 </variablelist>
671
672 </sect2>
673
674</sect1>
Note: See TracBrowser for help on using the repository browser.