source: chapter06/systemd.xml@ efcb393

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since efcb393 was efcb393, checked in by Pierre Labastie <pieere@…>, 4 years ago

Make the new book

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

  • Property mode set to 100644
File size: 30.4 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" revision="systemd">
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, apply a patch to fix various bugs since the release
44 of systemd-243.</para>
45
46<screen><userinput remap="pre">patch -Np1 -i ../systemd-&systemd-version;-consolidated_fixes-2.patch</userinput></screen>
47-->
48
49 <para>Create a symlink to work around missing xsltproc:</para>
50
51<screen><userinput remap="pre">ln -sf /bin/true /usr/bin/xsltproc</userinput></screen>
52
53 <para>Set up the man pages:</para>
54
55<screen><userinput remap="pre">tar -xf ../systemd-man-pages-&systemd-version;.tar.xz</userinput></screen>
56
57 <para>Remove tests that cannot be built in chroot:</para>
58
59<screen><userinput remap="pre">sed '179,$ d' -i src/resolve/meson.build</userinput></screen>
60
61 <para>Remove an unneeded group,
62 <systemitem class="groupname">render</systemitem>, from the default udev
63 rules:</para>
64
65<screen><userinput remap="pre">sed -i 's/GROUP="render", //' rules.d/50-udev-default.rules.in</userinput></screen>
66
67 <para>Prepare systemd for compilation:</para>
68
69<screen><userinput remap="configure">mkdir -p build
70cd build
71
72LANG=en_US.UTF-8 \
73meson --prefix=/usr \
74 --sysconfdir=/etc \
75 --localstatedir=/var \
76 -Dblkid=true \
77 -Dbuildtype=release \
78 -Ddefault-dnssec=no \
79 -Dfirstboot=false \
80 -Dinstall-tests=false \
81 -Dkmod-path=/bin/kmod \
82 -Dldconfig=false \
83 -Dmount-path=/bin/mount \
84 -Drootprefix= \
85 -Drootlibdir=/lib \
86 -Dsplit-usr=true \
87 -Dsulogin-path=/sbin/sulogin \
88 -Dsysusers=false \
89 -Dumount-path=/bin/umount \
90 -Db_lto=false \
91 -Drpmmacrosdir=no \
92 -Dhomed=false \
93 -Duserdb=false \
94 -Dman=true \
95 ..</userinput></screen>
96
97 <variablelist>
98 <title>The meaning of the meson options:</title>
99
100 <varlistentry>
101 <term><parameter>-D*-path=*</parameter></term>
102 <listitem>
103 <para>These switches provide location of binaries needed by
104 systemd at runtime that have not yet been installed.</para>
105 </listitem>
106 </varlistentry>
107
108 <varlistentry>
109 <term><parameter>-Ddefault-dnssec=no</parameter></term>
110 <listitem>
111 <para>This switch turns off the experimental DNSSEC support.</para>
112 </listitem>
113 </varlistentry>
114
115 <varlistentry>
116 <term><parameter>-Dfirstboot=false</parameter></term>
117 <listitem>
118 <para>This switch prevents installation of systemd
119 services responsible for setting up the system for
120 the first time. They are not useful for LFS because
121 everything is done manually.</para>
122 </listitem>
123 </varlistentry>
124
125 <varlistentry>
126 <term><parameter>-Dinstall-tests=false</parameter></term>
127 <listitem>
128 <para>This switch prevents installation of the compiled tests.</para>
129 </listitem>
130 </varlistentry>
131
132 <varlistentry>
133 <term><parameter>-Dldconfig=false</parameter></term>
134 <listitem>
135 <para>This switch prevents installation of a systemd unit that runs
136 <command>ldconfig</command> at boot, which is not useful for source
137 distributions such as LFS and makes the boot time longer. Remove it
138 if the described feature is desired.</para>
139 </listitem>
140 </varlistentry>
141
142 <varlistentry>
143 <term><parameter>-Droot*</parameter></term>
144 <listitem>
145 <para>These switches ensure that core programs and
146 shared libraries are installed in the subdirectories
147 of the root partition.</para>
148 </listitem>
149 </varlistentry>
150
151 <varlistentry>
152 <term><parameter>-Dsplit-usr=true</parameter></term>
153 <listitem>
154 <para>This switch ensures that systemd will work on
155 systems where /bin, /lib and /sbin directories are not
156 symlinks to their /usr counterparts.</para>
157 </listitem>
158 </varlistentry>
159
160 <varlistentry>
161 <term><parameter>-Dsysusers=false</parameter></term>
162 <listitem>
163 <para>This switch prevents installation of systemd
164 services responsible for setting up the
165 <filename>/etc/group</filename> and
166 <filename>/etc/passwd</filename> files. Both files
167 were created earlier in this chapter.</para>
168 </listitem>
169 </varlistentry>
170
171 <varlistentry>
172 <term><parameter>-Drpmmacrosdir=no</parameter></term>
173 <listitem>
174 <para>This switch disables installation of RPM Macros
175 for use with systemd because LFS does not support RPM.</para>
176 </listitem>
177 </varlistentry>
178
179 <varlistentry>
180 <term><parameter>-D{userdb,homed}=false</parameter></term>
181 <listitem>
182 <para>Remove two daemons that have dependencies that do not fit
183 the scope of LFS.</para>
184 </listitem>
185 </varlistentry>
186
187 </variablelist>
188
189 <para>Compile the package:</para>
190
191<screen><userinput remap="make">LANG=en_US.UTF-8 ninja</userinput></screen>
192<!--
193 <para>To test the package, execute the following command:</para>
194
195<screen><userinput remap="test">LANG=en_US.UTF-8 ninja test</userinput></screen>
196-->
197 <para>Install the package:</para>
198
199<screen><userinput remap="install">LANG=en_US.UTF-8 ninja install</userinput></screen>
200
201 <para>Remove an unnecessary symbolic link:</para>
202
203<screen><userinput remap="install">rm -f /usr/bin/xsltproc</userinput></screen>
204
205 <para>Create the <filename>/etc/machine-id</filename> file needed by
206 <command>systemd-journald</command>:</para>
207
208<screen><userinput remap="adjust">systemd-machine-id-setup</userinput></screen>
209
210 <para>Setup the basic target structure:</para>
211
212<screen><userinput remap="adjust">systemctl preset-all</userinput></screen>
213
214 <para>Disable a service that is known to cause problems with systems that
215 use a network configuration other than what is provided by
216 systemd-networkd:</para>
217 <!-- Observed halting startup with dhcpcd handling the primary NIC -->
218
219<screen><userinput remap="adjust">systemctl disable systemd-time-wait-sync.service</userinput></screen>
220
221 <para>Prevent systemd from resetting the maximum PID value which causes
222 some problems with packages and units in BLFS:</para>
223
224
225<screen><userinput remap="adjust">rm -f /usr/lib/sysctl.d/50-pid-max.conf</userinput></screen>
226
227 <!--
228 <para>Prevent systemd from creating <filename>/run/nologin</filename>
229 to allow unprivileged user logins without
230 <application>systemd-logind</application>:</para>
231
232<screen><userinput remap="adjust">rm -f /usr/lib/tmpfiles.d/systemd-nologin.conf</userinput></screen>
233 -->
234 </sect2>
235
236 <sect2 id="contents-systemd" role="content">
237 <title>Contents of systemd</title>
238
239 <segmentedlist>
240 <segtitle>Installed programs</segtitle>
241 <segtitle>Installed libraries</segtitle>
242 <segtitle>Installed directories</segtitle>
243
244 <seglistitem>
245 <seg>bootctl, busctl, coredumpctl, halt (symlink to systemctl),
246 hostnamectl, init, journalctl, kernel-install, localectl, loginctl,
247 machinectl, networkctl, portablectl, poweroff (symlink to
248 systemctl), reboot (symlink to systemctl), resolvconf (symlink to
249 resolvectl), resolvectl, runlevel (symlink to systemctl), shutdown
250 (symlink to systemctl), systemctl, systemd-analyze,
251 systemd-ask-password, systemd-cat, systemd-cgls, systemd-cgtop,
252 systemd-delta, systemd-detect-virt, systemd-escape, systemd-hwdb,
253 systemd-id128, systemd-inhibit, systemd-machine-id-setup,
254 systemd-mount, systemd-notify, systemd-nspawn, systemd-path,
255 systemd-repart, systemd-resolve (symlink to resolvectl), systemd-run,
256 systemd-socket-activate, systemd-stdio-bridge, systemd-tmpfiles,
257 systemd-tty-ask-password-agent, systemd-umount (symlink to
258 systemd-mount), telinit (symlink to systemctl), timedatectl, and
259 udevadm</seg>
260 <seg>libnss_myhostname.so.2, libnss_mymachines.so.2,
261 libnss_resolve.so.2, libnss_systemd.so.2,
262 libsystemd.so, libsystemd-shared-&systemd-version;.so (in /lib/systemd),
263 and libudev.so</seg>
264 <seg>/etc/binfmt.d, /etc/init.d, /etc/kernel, /etc/modules-load.d,
265 /etc/sysctl.d, /etc/systemd, /etc/tmpfiles.d, /etc/udev,
266 /etc/xdg/systemd, /lib/systemd, /lib/udev, /usr/include/systemd,
267 /usr/lib/binfmt.d, /usr/lib/kernel, /usr/lib/modules-load.d,
268 /usr/lib/sysctl.d, /usr/lib/systemd, /usr/lib/tmpfiles.d,
269 /usr/share/doc/systemd-&systemd-version;, /usr/share/factory,
270 /usr/share/systemd, /var/lib/systemd, and /var/log/journal</seg>
271 </seglistitem>
272 </segmentedlist>
273
274 <variablelist>
275 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
276 <?dbfo list-presentation="list"?>
277 <?dbhtml list-presentation="table"?>
278
279 <varlistentry id="bootctl">
280 <term><command>bootctl</command></term>
281 <listitem>
282 <para>Used to query the firmware and boot manager settings</para>
283 <indexterm zone="ch-system-systemd bootctl">
284 <primary sortas="b-bootctl">bootctl</primary>
285 </indexterm>
286 </listitem>
287 </varlistentry>
288
289 <varlistentry id="busctl">
290 <term><command>busctl</command></term>
291 <listitem>
292 <para>Used to introspect and monitor the D-Bus bus</para>
293 <indexterm zone="ch-system-systemd busctl">
294 <primary sortas="b-busctl">busctl</primary>
295 </indexterm>
296 </listitem>
297 </varlistentry>
298
299 <varlistentry id="coredumpctl">
300 <term><command>coredumpctl</command></term>
301 <listitem>
302 <para>Used to retrieve coredumps from the systemd journal</para>
303 <indexterm zone="ch-system-systemd coredumpctl">
304 <primary sortas="b-coredumpctl">coredumpctl</primary>
305 </indexterm>
306 </listitem>
307 </varlistentry>
308
309 <varlistentry id="halt">
310 <term><command>halt</command></term>
311 <listitem>
312 <para>Normally invokes <command>shutdown</command> with the
313 <parameter>-h</parameter> option, except when already in run-level 0,
314 then it tells the kernel to halt the system; it notes in the
315 file <filename>/var/log/wtmp</filename> that the system is being
316 brought down</para>
317 <indexterm zone="ch-system-systemd halt">
318 <primary sortas="b-halt">halt</primary>
319 </indexterm>
320 </listitem>
321 </varlistentry>
322
323 <varlistentry id="hostnamectl">
324 <term><command>hostnamectl</command></term>
325 <listitem>
326 <para>Used to query and change the system hostname and related
327 settings</para>
328 <indexterm zone="ch-system-systemd hostnamectl">
329 <primary sortas="b-hostnamectl">hostnamectl</primary>
330 </indexterm>
331 </listitem>
332 </varlistentry>
333
334 <varlistentry id="init">
335 <term><command>init</command></term>
336 <listitem>
337 <para>The first process to be started when the kernel has initialized
338 the hardware which takes over the boot process and starts all
339 processes according to its configuration files</para>
340 <indexterm zone="ch-system-systemd init">
341 <primary sortas="b-init">init</primary>
342 </indexterm>
343 </listitem>
344 </varlistentry>
345
346 <varlistentry id="journalctl">
347 <term><command>journalctl</command></term>
348 <listitem>
349 <para>Used to query the contents of the systemd journal</para>
350 <indexterm zone="ch-system-systemd journalctl">
351 <primary sortas="b-journalctl">journalctl</primary>
352 </indexterm>
353 </listitem>
354 </varlistentry>
355
356 <varlistentry id="kernel-install">
357 <term><command>kernel-install</command></term>
358 <listitem>
359 <para>Used to add and remove kernel and initramfs images to and
360 from /boot</para>
361 <indexterm zone="ch-system-systemd kernel-install">
362 <primary sortas="b-kernel-install">kernel-install</primary>
363 </indexterm>
364 </listitem>
365 </varlistentry>
366
367 <varlistentry id="localectl">
368 <term><command>localectl</command></term>
369 <listitem>
370 <para>Used to query and change the system locale and keyboard layout
371 settings</para>
372 <indexterm zone="ch-system-systemd localectl">
373 <primary sortas="b-localectl">localectl</primary>
374 </indexterm>
375 </listitem>
376 </varlistentry>
377
378 <varlistentry id="loginctl">
379 <term><command>loginctl</command></term>
380 <listitem>
381 <para>Used to introspect and control the state of the systemd Login
382 Manager</para>
383 <indexterm zone="ch-system-systemd loginctl">
384 <primary sortas="b-loginctl">loginctl</primary>
385 </indexterm>
386 </listitem>
387 </varlistentry>
388
389 <varlistentry id="machinectl">
390 <term><command>machinectl</command></term>
391 <listitem>
392 <para>Used to introspect and control the state of the systemd Virtual
393 Machine and Container Registration Manager</para>
394 <indexterm zone="ch-system-systemd machinectl">
395 <primary sortas="b-machinectl">machinectl</primary>
396 </indexterm>
397 </listitem>
398 </varlistentry>
399
400 <varlistentry id="networkctl">
401 <term><command>networkctl</command></term>
402 <listitem>
403 <para>Used to introspect the state of the network links as seen by
404 systemd-networkd</para>
405 <indexterm zone="ch-system-systemd networkctl">
406 <primary sortas="b-networkctl">networkctl</primary>
407 </indexterm>
408 </listitem>
409 </varlistentry>
410
411 <varlistentry id="portablectl">
412 <term><command>portablectl</command></term>
413 <listitem>
414 <para>Used to attach or detach portable services from the local
415 system</para>
416 <indexterm zone="ch-system-systemd portablectl">
417 <primary sortas="b-portablectl">portablectl</primary>
418 </indexterm>
419 </listitem>
420 </varlistentry>
421
422 <varlistentry id="poweroff">
423 <term><command>poweroff</command></term>
424 <listitem>
425 <para>Tells the kernel to halt the system and switch off the computer
426 (see <command>halt</command>)</para>
427 <indexterm zone="ch-system-systemd poweroff">
428 <primary sortas="b-poweroff">poweroff</primary>
429 </indexterm>
430 </listitem>
431 </varlistentry>
432
433 <varlistentry id="reboot">
434 <term><command>reboot</command></term>
435 <listitem>
436 <para>Tells the kernel to reboot the system (see
437 <command>halt</command>)</para>
438 <indexterm zone="ch-system-systemd reboot">
439 <primary sortas="b-reboot">reboot</primary>
440 </indexterm>
441 </listitem>
442 </varlistentry>
443
444 <varlistentry id="resolvconf">
445 <term><command>resolvconf</command></term>
446 <listitem>
447 <para>Register DNS server and domain configuration with
448 <command>systemd-resolved</command></para>
449 <indexterm zone="ch-system-systemd resolvconf">
450 <primary sortas="b-resolvconf">resolvconf</primary>
451 </indexterm>
452 </listitem>
453 </varlistentry>
454
455 <varlistentry id="resolvectl">
456 <term><command>resolvectl</command></term>
457 <listitem>
458 <para>Send control commands to the network name resolution
459 manager, or resolve domain names, IPv4 and IPv6 addresses,
460 DNS records, and services.</para>
461 <indexterm zone="ch-system-systemd resolvectl">
462 <primary sortas="b-resolvectl">resolvectl</primary>
463 </indexterm>
464 </listitem>
465 </varlistentry>
466
467 <varlistentry id="runlevel">
468 <term><command>runlevel</command></term>
469 <listitem>
470 <para>Reports the previous and the current run-level, as noted in the
471 last run-level record in <filename>/var/run/utmp</filename></para>
472 <indexterm zone="ch-system-systemd runlevel">
473 <primary sortas="b-runlevel">runlevel</primary>
474 </indexterm>
475 </listitem>
476 </varlistentry>
477
478 <varlistentry id="shutdown">
479 <term><command>shutdown</command></term>
480 <listitem>
481 <para>Brings the system down in a secure way, signaling all processes
482 and notifying all logged-in users</para>
483 <indexterm zone="ch-system-systemd shutdown">
484 <primary sortas="b-shutdown">shutdown</primary>
485 </indexterm>
486 </listitem>
487 </varlistentry>
488
489 <varlistentry id="systemctl">
490 <term><command>systemctl</command></term>
491 <listitem>
492 <para>Used to introspect and control the state of the systemd system
493 and service manager</para>
494 <indexterm zone="ch-system-systemd systemctl">
495 <primary sortas="b-systemctl">systemctl</primary>
496 </indexterm>
497 </listitem>
498 </varlistentry>
499
500 <varlistentry id="systemd-analyze">
501 <term><command>systemd-analyze</command></term>
502 <listitem>
503 <para>Used to determine system boot-up performance of the current
504 boot</para>
505 <indexterm zone="ch-system-systemd systemd-analyze">
506 <primary sortas="b-systemd-analyze">systemd-analyze</primary>
507 </indexterm>
508 </listitem>
509 </varlistentry>
510
511 <varlistentry id="systemd-ask-password">
512 <term><command>systemd-ask-password</command></term>
513 <listitem>
514 <para>Used to query a system password or passphrase from the user,
515 using a question message specified on the command line</para>
516 <indexterm zone="ch-system-systemd systemd-ask-password">
517 <primary sortas="b-systemd-ask-password">systemd-ask-password</primary>
518 </indexterm>
519 </listitem>
520 </varlistentry>
521
522 <varlistentry id="systemd-cat">
523 <term><command>systemd-cat</command></term>
524 <listitem>
525 <para>Used to connect STDOUT and STDERR of a process with the Journal
526 </para>
527 <indexterm zone="ch-system-systemd systemd-cat">
528 <primary sortas="b-systemd-cat">systemd-cat</primary>
529 </indexterm>
530 </listitem>
531 </varlistentry>
532
533 <varlistentry id="systemd-cgls">
534 <term><command>systemd-cgls</command></term>
535 <listitem>
536 <para>Recursively shows the contents of the selected Linux control
537 group hierarchy in a tree</para>
538 <indexterm zone="ch-system-systemd systemd-cgls">
539 <primary sortas="b-systemd-cgls">systemd-cgls</primary>
540 </indexterm>
541 </listitem>
542 </varlistentry>
543
544 <varlistentry id="systemd-cgtop">
545 <term><command>systemd-cgtop</command></term>
546 <listitem>
547 <para>Shows the top control groups of the local Linux control group
548 hierarchy, ordered by their CPU, memory and disk I/O load</para>
549 <indexterm zone="ch-system-systemd systemd-cgtop">
550 <primary sortas="b-systemd-cgtop">systemd-cgtop</primary>
551 </indexterm>
552 </listitem>
553 </varlistentry>
554
555 <varlistentry id="systemd-delta">
556 <term><command>systemd-delta</command></term>
557 <listitem>
558 <para>Used to identify and compare configuration files in
559 <filename class="directory">/etc</filename> that override default
560 counterparts in <filename class="directory">/usr</filename></para>
561 <indexterm zone="ch-system-systemd systemd-delta">
562 <primary sortas="b-systemd-delta">systemd-delta</primary>
563 </indexterm>
564 </listitem>
565 </varlistentry>
566
567 <varlistentry id="systemd-detect-virt">
568 <term><command>systemd-detect-virt</command></term>
569 <listitem>
570 <para>Detects execution in a virtualized environment</para>
571 <indexterm zone="ch-system-systemd systemd-detect-virt">
572 <primary sortas="b-systemd-detect-virt">systemd-detect-virt</primary>
573 </indexterm>
574 </listitem>
575 </varlistentry>
576
577 <varlistentry id="systemd-escape">
578 <term><command>systemd-escape</command></term>
579 <listitem>
580 <para>Used to escape strings for inclusion in systemd unit
581 names</para>
582 <indexterm zone="ch-system-systemd systemd-escape">
583 <primary sortas="b-systemd-escape">systemd-escape</primary>
584 </indexterm>
585 </listitem>
586 </varlistentry>
587
588 <varlistentry id="systemd-hwdb">
589 <term><command>systemd-hwdb</command></term>
590 <listitem>
591 <para>Used to manage hardware database (hwdb)</para>
592 <indexterm zone="ch-system-systemd systemd-hwdb">
593 <primary sortas="b-systemd-hwdb">systemd-hwdb</primary>
594 </indexterm>
595 </listitem>
596 </varlistentry>
597
598 <varlistentry id="systemd-id128">
599 <term><command>systemd-id128</command></term>
600 <listitem>
601 <para>Generate and print id128 strings</para>
602 <indexterm zone="ch-system-systemd systemd-id128">
603 <primary sortas="b-systemd-id128">systemd-id128</primary>
604 </indexterm>
605 </listitem>
606 </varlistentry>
607
608 <varlistentry id="systemd-inhibit">
609 <term><command>systemd-inhibit</command></term>
610 <listitem>
611 <para>Used to execute a program with a shutdown, sleep or idle
612 inhibitor lock taken</para>
613 <indexterm zone="ch-system-systemd systemd-inhibit">
614 <primary sortas="b-systemd-inhibit">systemd-inhibit</primary>
615 </indexterm>
616 </listitem>
617 </varlistentry>
618
619 <varlistentry id="systemd-machine-id-setup">
620 <term><command>systemd-machine-id-setup</command></term>
621 <listitem>
622 <para>Used by system installer tools to initialize the machine ID
623 stored in <filename>/etc/machine-id</filename> at install time with a
624 randomly generated ID</para>
625 <indexterm zone="ch-system-systemd systemd-machine-id-setup">
626 <primary sortas="b-systemd-machine-id-setup">systemd-machine-id-setup</primary>
627 </indexterm>
628 </listitem>
629 </varlistentry>
630
631 <varlistentry id="systemd-mount">
632 <term><command>systemd-mount</command></term>
633 <listitem>
634 <para>A tool to temporarily mount or auto-mount a drive.</para>
635 <indexterm zone="ch-system-systemd systemd-mount">
636 <primary sortas="b-systemd-mount">systemd-mount</primary>
637 </indexterm>
638 </listitem>
639 </varlistentry>
640
641 <varlistentry id="systemd-notify">
642 <term><command>systemd-notify</command></term>
643 <listitem>
644 <para>Used by daemon scripts to notify the init system about status
645 changes</para>
646 <indexterm zone="ch-system-systemd systemd-notify">
647 <primary sortas="b-systemd-notify">systemd-notify</primary>
648 </indexterm>
649 </listitem>
650 </varlistentry>
651
652 <varlistentry id="systemd-nspawn">
653 <term><command>systemd-nspawn</command></term>
654 <listitem>
655 <para>Used to run a command or OS in a light-weight namespace
656 container</para>
657 <indexterm zone="ch-system-systemd systemd-nspawn">
658 <primary sortas="b-systemd-nspawn">systemd-nspawn</primary>
659 </indexterm>
660 </listitem>
661 </varlistentry>
662
663 <varlistentry id="systemd-path">
664 <term><command>systemd-path</command></term>
665 <listitem>
666 <para>Used to query system and user paths</para>
667 <indexterm zone="ch-system-systemd systemd-path">
668 <primary sortas="b-systemd-path">systemd-path</primary>
669 </indexterm>
670 </listitem>
671 </varlistentry>
672
673 <varlistentry id="systemd-repart">
674 <term><command>systemd-repart</command></term>
675 <listitem>
676 <para>Used go grow and add partitions to a partition table when
677 systemd is used in an OS image (e.g. a container).</para>
678 <indexterm zone="ch-system-systemd systemd-repart">
679 <primary sortas="b-systemd-repart">systemd-repart</primary>
680 </indexterm>
681 </listitem>
682 </varlistentry>
683
684 <varlistentry id="systemd-resolve">
685 <term><command>systemd-resolve</command></term>
686 <listitem>
687 <para>Used to resolve domain names, IPV4 and IPv6 addresses, DNS
688 resource records, and services</para>
689 <indexterm zone="ch-system-systemd systemd-resolve">
690 <primary sortas="b-systemd-resolve">systemd-resolve</primary>
691 </indexterm>
692 </listitem>
693 </varlistentry>
694
695 <varlistentry id="systemd-run">
696 <term><command>systemd-run</command></term>
697 <listitem>
698 <para>Used to create and start a transient .service or a .scope unit
699 and run the specified command in it</para>
700 <indexterm zone="ch-system-systemd systemd-run">
701 <primary sortas="b-systemd-run">systemd-run</primary>
702 </indexterm>
703 </listitem>
704 </varlistentry>
705
706 <!-- <varlistentry id="systemd-stdio-bridge">
707 <term><command>systemd-stdio-bridge</command></term>
708 <listitem>
709 <para>To be completed</para>
710 <indexterm zone="ch-system-systemd systemd-stdio-bridge">
711 <primary sortas="b-systemd-stdio-bridge">systemd-stdio-bridge</primary>
712 </indexterm>
713 </listitem>
714 </varlistentry> -->
715
716 <varlistentry id="systemd-socket-activate">
717 <term><command>systemd-socket-activate</command></term>
718 <listitem>
719 <para>A tool to listen on socket devices and launch a process upon
720 connection.</para>
721 <indexterm zone="ch-system-systemd systemd-socket-activate">
722 <primary sortas="b-systemd-socket-activate">systemd-socket-activate</primary>
723 </indexterm>
724 </listitem>
725 </varlistentry>
726
727 <varlistentry id="systemd-tmpfiles">
728 <term><command>systemd-tmpfiles</command></term>
729 <listitem>
730 <para>Creates, deletes and cleans up volatile and temporary files and
731 directories, based on the configuration file format and location
732 specified in
733 <filename class="directory">tmpfiles.d</filename> directories</para>
734 <indexterm zone="ch-system-systemd systemd-tmpfiles">
735 <primary sortas="b-systemd-tmpfiles">systemd-tmpfiles</primary>
736 </indexterm>
737 </listitem>
738 </varlistentry>
739
740 <varlistentry id="systemd-umount">
741 <term><command>systemd-umount</command></term>
742 <listitem>
743 <para>Unmount mount points</para>
744 <indexterm zone="ch-system-systemd systemd-umount">
745 <primary sortas="b-systemd-umount">systemd-umount</primary>
746 </indexterm>
747 </listitem>
748 </varlistentry>
749
750 <varlistentry id="systemd-tty-ask-password-agent">
751 <term><command>systemd-tty-ask-password-agent</command></term>
752 <listitem>
753 <para>Used to list or process pending systemd password requests</para>
754 <indexterm zone="ch-system-systemd systemd-tty-ask-password-agent">
755 <primary sortas="b-systemd-tty-ask-password-agent">systemd-tty-ask-password-agent</primary>
756 </indexterm>
757 </listitem>
758 </varlistentry>
759
760 <varlistentry id="telinit">
761 <term><command>telinit</command></term>
762 <listitem>
763 <para>Tells <command>init</command> which run-level to change
764 to</para>
765 <indexterm zone="ch-system-systemd telinit">
766 <primary sortas="b-telinit">telinit</primary>
767 </indexterm>
768 </listitem>
769 </varlistentry>
770
771 <varlistentry id="timedatectl">
772 <term><command>timedatectl</command></term>
773 <listitem>
774 <para>Used to query and change the system clock and its settings
775 </para>
776 <indexterm zone="ch-system-systemd timedatectl">
777 <primary sortas="b-timedatectl">timedatectl</primary>
778 </indexterm>
779 </listitem>
780 </varlistentry>
781
782 <varlistentry id="udevadm">
783 <term><command>udevadm</command></term>
784 <listitem>
785 <para>Generic udev administration tool: controls the udevd daemon,
786 provides info from the Udev database, monitors uevents, waits for
787 uevents to finish, tests udev configuration, and triggers uevents
788 for a given device</para>
789 <indexterm zone="ch-system-systemd udevadm">
790 <primary sortas="b-udevadm">udevadm</primary>
791 </indexterm>
792 </listitem>
793 </varlistentry>
794
795 <varlistentry id="libsystemd">
796 <term><filename class="libraryfile">libsystemd</filename></term>
797 <listitem>
798 <para>The main systemd utility library</para>
799 <indexterm zone="ch-system-systemd libsystemd">
800 <primary sortas="c-libsystemd">libsystemd</primary>
801 </indexterm>
802 </listitem>
803 </varlistentry>
804
805 <varlistentry id="libudev">
806 <term><filename class="libraryfile">libudev</filename></term>
807 <listitem>
808 <para>A library to access Udev device information</para>
809 <indexterm zone="ch-system-systemd libudev">
810 <primary sortas="c-libudev">libudev</primary>
811 </indexterm>
812 </listitem>
813 </varlistentry>
814
815 </variablelist>
816
817 </sect2>
818
819</sect1>
Note: See TracBrowser for help on using the repository browser.