source: chapter06/systemd.xml@ 093c5ad9

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

Fix systemd build.

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