source: chapter06/systemd.xml@ 7980dae

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

Updated to systemd-218 and merged trunk.

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

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