source: chapter06/systemd.xml@ f168b8f

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

Merged trunk. Updated to dbus-1.8.20, systemd-222.

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

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