source: chapter08/systemd.xml@ 871fd2f

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 871fd2f was 871fd2f, checked in by Xi Ruoyao <xry111@…>, 3 years ago

systemd: fix systemd-sysext description

Technically it's not a daemon, copy the desc from man page.

  • Property mode set to 100644
File size: 31.6 KB
RevLine 
[f896e21c]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
[35a5259]8<sect1 id="ch-system-systemd" role="wrap" revision="systemd">
[cba2d4e]9 <?dbhtml filename="systemd.html"?>
[f896e21c]10
11 <sect1info condition="script">
[cba2d4e]12 <productname>systemd</productname>
[f896e21c]13 <productnumber>&systemd-version;</productnumber>
14 <address>&systemd-url;</address>
15 </sect1info>
16
[cba2d4e]17 <title>Systemd-&systemd-version;</title>
[f896e21c]18
[cba2d4e]19 <indexterm zone="ch-system-systemd">
[1118b17]20 <primary sortas="a-systemd">systemd</primary>
[f896e21c]21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
25
[1118b17]26 <para>The systemd package contains programs for controlling the startup,
[cba2d4e]27 running, and shutdown of the system.</para>
[f896e21c]28
29 <segmentedlist>
30 <segtitle>&buildtime;</segtitle>
31 <segtitle>&diskspace;</segtitle>
32
33 <seglistitem>
[fb386e0]34 <seg>&systemd-fin-sbu;</seg>
35 <seg>&systemd-fin-du;</seg>
[f896e21c]36 </seglistitem>
37 </segmentedlist>
38 </sect2>
39
40 <sect2 role="installation">
[1118b17]41 <title>Installation of systemd</title>
[70dcd88]42
[2ca70d33]43<!--
[380fdc0]44 <para>First, apply a patch to fix the build with GCC-10 and fix a segfault:</para>
[d53fefa]45
[380fdc0]46<screen><userinput remap="pre">patch -Np1 -i ../systemd-&systemd-version;-gcc_10-fixes-2.patch</userinput></screen>
[2ca70d33]47-->
[d53fefa]48
[06addba]49 <!-- For linux-5.11's API headers changing the rfkill_event structure -->
[d7a9421]50 <para>First, apply a patch to fix some build issues:</para>
[22009fb]51
[d7a9421]52<screen><userinput remap="pre">patch -Np1 -i ../systemd-&systemd-version;-upstream_fixes-1.patch</userinput></screen>
[22009fb]53
[e88a471b]54 <para>Remove tests that cannot be built in chroot:</para>
55
[d7a9421]56<screen><userinput remap="pre">sed '177,$ d' -i src/resolve/meson.build</userinput></screen>
[b55310e]57
[896e77e]58 <para>Remove an unneeded group,
59 <systemitem class="groupname">render</systemitem>, from the default udev
60 rules:</para>
61
[87621f8]62<screen><userinput remap="pre">sed -i 's/GROUP="render"/GROUP="video"/' rules.d/50-udev-default.rules.in</userinput></screen>
[896e77e]63
[1118b17]64 <para>Prepare systemd for compilation:</para>
65
[c556e59]66<screen><userinput remap="configure">mkdir -p build
[04b2165]67cd build
[fc199db]68
[0f703541]69LANG=en_US.UTF-8 \
70meson --prefix=/usr \
71 --sysconfdir=/etc \
72 --localstatedir=/var \
73 -Dblkid=true \
74 -Dbuildtype=release \
75 -Ddefault-dnssec=no \
76 -Dfirstboot=false \
77 -Dinstall-tests=false \
78 -Dldconfig=false \
79 -Dsysusers=false \
80 -Db_lto=false \
81 -Drpmmacrosdir=no \
82 -Dhomed=false \
83 -Duserdb=false \
[35e0479]84 -Dman=false \
[22009fb]85 -Dmode=release \
[1446892]86 -Ddocdir=/usr/share/doc/systemd-&systemd-version; \
[fc199db]87 ..</userinput></screen>
[cba2d4e]88
89 <variablelist>
[81ed05f]90 <title>The meaning of the meson options:</title>
[cba2d4e]91
92 <varlistentry>
[81ed05f]93 <term><parameter>-Ddefault-dnssec=no</parameter></term>
[cba2d4e]94 <listitem>
[81ed05f]95 <para>This switch turns off the experimental DNSSEC support.</para>
[cba2d4e]96 </listitem>
97 </varlistentry>
98
99 <varlistentry>
[81ed05f]100 <term><parameter>-Dfirstboot=false</parameter></term>
[cba2d4e]101 <listitem>
[81ed05f]102 <para>This switch prevents installation of systemd
103 services responsible for setting up the system for
104 the first time. They are not useful for LFS because
105 everything is done manually.</para>
[cba2d4e]106 </listitem>
107 </varlistentry>
108
[e88a471b]109 <varlistentry>
110 <term><parameter>-Dinstall-tests=false</parameter></term>
111 <listitem>
112 <para>This switch prevents installation of the compiled tests.</para>
113 </listitem>
114 </varlistentry>
115
[cba2d4e]116 <varlistentry>
[0d84af1]117 <term><parameter>-Dldconfig=false</parameter></term>
[cba2d4e]118 <listitem>
[0d84af1]119 <para>This switch prevents installation of a systemd unit that runs
120 <command>ldconfig</command> at boot, which is not useful for source
121 distributions such as LFS and makes the boot time longer. Remove it
122 if the described feature is desired.</para>
[cba2d4e]123 </listitem>
124 </varlistentry>
125
[1118b17]126 <varlistentry>
[81ed05f]127 <term><parameter>-Dsysusers=false</parameter></term>
[1118b17]128 <listitem>
129 <para>This switch prevents installation of systemd
130 services responsible for setting up the
131 <filename>/etc/group</filename> and
132 <filename>/etc/passwd</filename> files. Both files
[0d84af1]133 were created earlier in this chapter.</para>
[cba2d4e]134 </listitem>
135 </varlistentry>
136
[c556e59]137 <varlistentry>
138 <term><parameter>-Drpmmacrosdir=no</parameter></term>
139 <listitem>
140 <para>This switch disables installation of RPM Macros
141 for use with systemd because LFS does not support RPM.</para>
142 </listitem>
143 </varlistentry>
[c06f49a]144
145 <varlistentry>
146 <term><parameter>-D{userdb,homed}=false</parameter></term>
147 <listitem>
148 <para>Remove two daemons that have dependencies that do not fit
149 the scope of LFS.</para>
150 </listitem>
151 </varlistentry>
152
[35e0479]153 <varlistentry>
154 <term><parameter>-Dman=false</parameter></term>
155 <listitem>
156 <para>Prevent the generation of man pages to avoid extra
157 dependencies. We will install pre-generated man pages for systemd
158 from a tarball later.</para>
159 </listitem>
160 </varlistentry>
161
[fe42b2f]162 <varlistentry>
163 <term><parameter>-Dmode=release</parameter></term>
164 <listitem>
165 <para>Disable some features considered experimental by upstream.
166 </para>
167 </listitem>
168 </varlistentry>
169
[cba2d4e]170 </variablelist>
171
172 <para>Compile the package:</para>
173
[fc199db]174<screen><userinput remap="make">LANG=en_US.UTF-8 ninja</userinput></screen>
[f896e21c]175
176 <para>Install the package:</para>
177
[81ed05f]178<screen><userinput remap="install">LANG=en_US.UTF-8 ninja install</userinput></screen>
[cba2d4e]179
[35e0479]180 <para>Install the man pages:</para>
[c556e59]181
[35e0479]182<screen><userinput remap="install">tar -xf ../../systemd-man-pages-&systemd-man-version;.tar.xz --strip-components=1 -C /usr/share/man</userinput></screen>
[c556e59]183
[4f8ae861]184 <para>Remove a useless directory:</para>
[a815ec7]185
186<screen><userinput remap="install">rm -rf /usr/lib/pam.d</userinput></screen>
187
[cba2d4e]188 <para>Create the <filename>/etc/machine-id</filename> file needed by
[1118b17]189 <command>systemd-journald</command>:</para>
[053b206]190
[15f0f21]191<screen><userinput remap="adjust">systemd-machine-id-setup</userinput></screen>
[cba2d4e]192
[8a0d39ee]193 <para>Setup the basic target structure:</para>
194
195<screen><userinput remap="adjust">systemctl preset-all</userinput></screen>
[777b5cb]196
197 <para>Disable a service that is known to cause problems with systems that
198 use a network configuration other than what is provided by
199 systemd-networkd:</para>
200 <!-- Observed halting startup with dhcpcd handling the primary NIC -->
201
202<screen><userinput remap="adjust">systemctl disable systemd-time-wait-sync.service</userinput></screen>
203
[a815ec7]204<!-- dev: 50-pid-max.conf is not removed in BLFS, so I commented the following out.
205 If it causes any trouble, we can add this back and also copy it into BLFS -->
206<!--
[777b5cb]207 <para>Prevent systemd from resetting the maximum PID value which causes
208 some problems with packages and units in BLFS:</para>
[c06f49a]209
210<screen><userinput remap="adjust">rm -f /usr/lib/sysctl.d/50-pid-max.conf</userinput></screen>
[a815ec7]211-->
[777b5cb]212
[f896e21c]213 </sect2>
214
[cba2d4e]215 <sect2 id="contents-systemd" role="content">
[1118b17]216 <title>Contents of systemd</title>
[f896e21c]217
218 <segmentedlist>
219 <segtitle>Installed programs</segtitle>
220 <segtitle>Installed libraries</segtitle>
221 <segtitle>Installed directories</segtitle>
222
223 <seglistitem>
[78cc3be]224 <seg>bootctl, busctl, coredumpctl, halt (symlink to systemctl),
225 hostnamectl, init, journalctl, kernel-install, localectl, loginctl,
[d7a9421]226 machinectl, networkctl, oomctl, portablectl, poweroff (symlink to
[78cc3be]227 systemctl), reboot (symlink to systemctl), resolvconf (symlink to
228 resolvectl), resolvectl, runlevel (symlink to systemctl), shutdown
229 (symlink to systemctl), systemctl, systemd-analyze,
[1118b17]230 systemd-ask-password, systemd-cat, systemd-cgls, systemd-cgtop,
[d7a9421]231 systemd-cryptenroll, systemd-delta, systemd-detect-virt,
232 systemd-dissect, systemd-escape, systemd-hwdb, systemd-id128,
233 systemd-inhibit, systemd-machine-id-setup,
[78cc3be]234 systemd-mount, systemd-notify, systemd-nspawn, systemd-path,
[c06f49a]235 systemd-repart, systemd-resolve (symlink to resolvectl), systemd-run,
[d7a9421]236 systemd-socket-activate, systemd-stdio-bridge, systemd-sysext,
237 systemd-tmpfiles, systemd-tty-ask-password-agent,
238 systemd-umount (symlink to systemd-mount),
239 telinit (symlink to systemctl), timedatectl, and udevadm</seg>
[1118b17]240 <seg>libnss_myhostname.so.2, libnss_mymachines.so.2,
[78cc3be]241 libnss_resolve.so.2, libnss_systemd.so.2,
[d7a9421]242 libsystemd.so, libsystemd-shared-&systemd-version;.so (in /usr/lib/systemd),
[a840e59]243 and libudev.so</seg>
[cba2d4e]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,
[d7a9421]246 /etc/xdg/systemd, /usr/lib/systemd, /usr/lib/udev, /usr/include/systemd,
[2ca70d33]247 /usr/lib/binfmt.d, /usr/lib/environment.d, /usr/lib/kernel,
248 /usr/lib/modules-load.d, /usr/lib/sysctl.d, /usr/lib/systemd,
249 /usr/lib/tmpfiles.d,
[1118b17]250 /usr/share/doc/systemd-&systemd-version;, /usr/share/factory,
251 /usr/share/systemd, /var/lib/systemd, and /var/log/journal</seg>
[f896e21c]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
[cba2d4e]260 <varlistentry id="bootctl">
261 <term><command>bootctl</command></term>
262 <listitem>
[9e7475a]263 <para>Is used to query the firmware and boot manager settings</para>
[cba2d4e]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>
[9e7475a]273 <para>Is used to introspect and monitor the D-Bus bus</para>
[cba2d4e]274 <indexterm zone="ch-system-systemd busctl">
275 <primary sortas="b-busctl">busctl</primary>
276 </indexterm>
277 </listitem>
278 </varlistentry>
279
[1118b17]280 <varlistentry id="coredumpctl">
281 <term><command>coredumpctl</command></term>
282 <listitem>
[9e7475a]283 <para>Is used to retrieve coredumps from the systemd journal</para>
[1118b17]284 <indexterm zone="ch-system-systemd coredumpctl">
285 <primary sortas="b-coredumpctl">coredumpctl</primary>
286 </indexterm>
287 </listitem>
288 </varlistentry>
289
[cba2d4e]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
[1118b17]297 brought down</para>
[cba2d4e]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>
[9e7475a]307 <para>Is used to query and change the system hostname and related
[1118b17]308 settings</para>
[cba2d4e]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>
[9e7475a]318 <para>Is the first process to be started when the kernel has initialized
[0d84af1]319 the hardware which takes over the boot process and starts all
[9e7475a]320 processes according to its configuration files. In this case, it starts
[8d35535]321 systemd</para>
[cba2d4e]322 <indexterm zone="ch-system-systemd init">
323 <primary sortas="b-init">init</primary>
324 </indexterm>
325 </listitem>
326 </varlistentry>
327
328 <varlistentry id="journalctl">
329 <term><command>journalctl</command></term>
330 <listitem>
[9e7475a]331 <para>Is used to query the contents of the systemd journal</para>
[cba2d4e]332 <indexterm zone="ch-system-systemd journalctl">
333 <primary sortas="b-journalctl">journalctl</primary>
334 </indexterm>
335 </listitem>
336 </varlistentry>
337
338 <varlistentry id="kernel-install">
339 <term><command>kernel-install</command></term>
340 <listitem>
[9e7475a]341 <para>Is used to add and remove kernel and initramfs images to and
[8d35535]342 from /boot. In LFS, this is done manually</para>
[cba2d4e]343 <indexterm zone="ch-system-systemd kernel-install">
344 <primary sortas="b-kernel-install">kernel-install</primary>
345 </indexterm>
346 </listitem>
347 </varlistentry>
348
349 <varlistentry id="localectl">
350 <term><command>localectl</command></term>
351 <listitem>
[9e7475a]352 <para>Is used to query and change the system locale and keyboard layout
[1118b17]353 settings</para>
[cba2d4e]354 <indexterm zone="ch-system-systemd localectl">
355 <primary sortas="b-localectl">localectl</primary>
356 </indexterm>
357 </listitem>
358 </varlistentry>
359
360 <varlistentry id="loginctl">
361 <term><command>loginctl</command></term>
362 <listitem>
[9e7475a]363 <para>Is used to introspect and control the state of the systemd Login
[1118b17]364 Manager</para>
[cba2d4e]365 <indexterm zone="ch-system-systemd loginctl">
366 <primary sortas="b-loginctl">loginctl</primary>
367 </indexterm>
368 </listitem>
369 </varlistentry>
370
371 <varlistentry id="machinectl">
372 <term><command>machinectl</command></term>
373 <listitem>
[9e7475a]374 <para>Is used to introspect and control the state of the systemd Virtual
[cba2d4e]375 Machine and Container Registration Manager</para>
376 <indexterm zone="ch-system-systemd machinectl">
377 <primary sortas="b-machinectl">machinectl</primary>
378 </indexterm>
379 </listitem>
380 </varlistentry>
381
[1118b17]382 <varlistentry id="networkctl">
383 <term><command>networkctl</command></term>
384 <listitem>
[9e7475a]385 <para>Is used to introspect and configure the state of the network
386 links configured by systemd-networkd</para>
[1118b17]387 <indexterm zone="ch-system-systemd networkctl">
388 <primary sortas="b-networkctl">networkctl</primary>
389 </indexterm>
390 </listitem>
391 </varlistentry>
392
[d7a9421]393 <varlistentry id="oomctl">
394 <term><command>oomctl</command></term>
395 <listitem>
396 <para>Controls the systemd Out Of Memory daemon</para>
397 <indexterm zone="ch-system-systemd oomctl">
398 <primary sortas="b-oomctl">oomctl</primary>
399 </indexterm>
400 </listitem>
401 </varlistentry>
402
[78cc3be]403 <varlistentry id="portablectl">
404 <term><command>portablectl</command></term>
405 <listitem>
[9e7475a]406 <para>Is used to attach or detach portable services from the local
[78cc3be]407 system</para>
408 <indexterm zone="ch-system-systemd portablectl">
409 <primary sortas="b-portablectl">portablectl</primary>
410 </indexterm>
411 </listitem>
412 </varlistentry>
413
[cba2d4e]414 <varlistentry id="poweroff">
415 <term><command>poweroff</command></term>
416 <listitem>
[9e7475a]417 <para>Instructs the kernel to halt the system and switch off the computer
[1118b17]418 (see <command>halt</command>)</para>
[cba2d4e]419 <indexterm zone="ch-system-systemd poweroff">
420 <primary sortas="b-poweroff">poweroff</primary>
421 </indexterm>
422 </listitem>
423 </varlistentry>
424
425 <varlistentry id="reboot">
426 <term><command>reboot</command></term>
[f896e21c]427 <listitem>
[9e7475a]428 <para>Instructs the kernel to reboot the system (see
[1118b17]429 <command>halt</command>)</para>
[cba2d4e]430 <indexterm zone="ch-system-systemd reboot">
431 <primary sortas="b-reboot">reboot</primary>
[f896e21c]432 </indexterm>
433 </listitem>
434 </varlistentry>
435
[78cc3be]436 <varlistentry id="resolvconf">
437 <term><command>resolvconf</command></term>
438 <listitem>
[9e7475a]439 <para>Registers DNS server and domain configuration with
[93058448]440 <command>systemd-resolved</command></para>
[78cc3be]441 <indexterm zone="ch-system-systemd resolvconf">
442 <primary sortas="b-resolvconf">resolvconf</primary>
443 </indexterm>
444 </listitem>
445 </varlistentry>
446
447 <varlistentry id="resolvectl">
448 <term><command>resolvectl</command></term>
449 <listitem>
[9e7475a]450 <para>Sends control commands to the network name resolution
451 manager, or resolves domain names, IPv4 and IPv6 addresses,
[8d35535]452 DNS records, and services</para>
[78cc3be]453 <indexterm zone="ch-system-systemd resolvectl">
454 <primary sortas="b-resolvectl">resolvectl</primary>
455 </indexterm>
456 </listitem>
457 </varlistentry>
458
[cba2d4e]459 <varlistentry id="runlevel">
460 <term><command>runlevel</command></term>
[f896e21c]461 <listitem>
[9e7475a]462 <para>Outputs the previous and the current run-level, as noted in the
[02776dff]463 last run-level record in <filename>/run/utmp</filename></para>
[cba2d4e]464 <indexterm zone="ch-system-systemd runlevel">
465 <primary sortas="b-runlevel">runlevel</primary>
[f896e21c]466 </indexterm>
467 </listitem>
468 </varlistentry>
469
[cba2d4e]470 <varlistentry id="shutdown">
471 <term><command>shutdown</command></term>
[f896e21c]472 <listitem>
[9e7475a]473 <para>Brings the system down in a safe and secure manner, signaling
474 all processes and notifying all logged-in users</para>
[cba2d4e]475 <indexterm zone="ch-system-systemd shutdown">
476 <primary sortas="b-shutdown">shutdown</primary>
[f896e21c]477 </indexterm>
478 </listitem>
479 </varlistentry>
480
[cba2d4e]481 <varlistentry id="systemctl">
482 <term><command>systemctl</command></term>
[f896e21c]483 <listitem>
[9e7475a]484 <para>Is used to introspect and control the state of the systemd system
[1118b17]485 and service manager</para>
[cba2d4e]486 <indexterm zone="ch-system-systemd systemctl">
487 <primary sortas="b-systemctl">systemctl</primary>
488 </indexterm>
489 </listitem>
490 </varlistentry>
491
492 <varlistentry id="systemd-analyze">
493 <term><command>systemd-analyze</command></term>
494 <listitem>
[9e7475a]495 <para>Is used to determine system startup performance of the current
496 boot, as well as identify troublesome systemd units</para>
[cba2d4e]497 <indexterm zone="ch-system-systemd systemd-analyze">
498 <primary sortas="b-systemd-analyze">systemd-analyze</primary>
499 </indexterm>
500 </listitem>
501 </varlistentry>
502
503 <varlistentry id="systemd-ask-password">
504 <term><command>systemd-ask-password</command></term>
505 <listitem>
[9e7475a]506 <para>Is used to query a system password or passphrase from the user,
[1118b17]507 using a question message specified on the command line</para>
[cba2d4e]508 <indexterm zone="ch-system-systemd systemd-ask-password">
509 <primary sortas="b-systemd-ask-password">systemd-ask-password</primary>
510 </indexterm>
511 </listitem>
512 </varlistentry>
513
514 <varlistentry id="systemd-cat">
515 <term><command>systemd-cat</command></term>
516 <listitem>
[9e7475a]517 <para>Is used to connect the STDOUT and STDERR outputs of a process
[8d35535]518 with the systemd journal
[cba2d4e]519 </para>
520 <indexterm zone="ch-system-systemd systemd-cat">
521 <primary sortas="b-systemd-cat">systemd-cat</primary>
522 </indexterm>
523 </listitem>
524 </varlistentry>
525
526 <varlistentry id="systemd-cgls">
527 <term><command>systemd-cgls</command></term>
528 <listitem>
[1118b17]529 <para>Recursively shows the contents of the selected Linux control
530 group hierarchy in a tree</para>
[cba2d4e]531 <indexterm zone="ch-system-systemd systemd-cgls">
532 <primary sortas="b-systemd-cgls">systemd-cgls</primary>
533 </indexterm>
534 </listitem>
535 </varlistentry>
536
537 <varlistentry id="systemd-cgtop">
538 <term><command>systemd-cgtop</command></term>
539 <listitem>
[1118b17]540 <para>Shows the top control groups of the local Linux control group
541 hierarchy, ordered by their CPU, memory and disk I/O load</para>
[cba2d4e]542 <indexterm zone="ch-system-systemd systemd-cgtop">
543 <primary sortas="b-systemd-cgtop">systemd-cgtop</primary>
544 </indexterm>
545 </listitem>
546 </varlistentry>
547
[d7a9421]548 <varlistentry id="systemd-cryptenroll">
549 <term><command>systemd-cryptenroll</command></term>
550 <listitem>
551 <para>Is used to enroll or remove a system from full disk encryption,
552 as well as set and query private keys and recovery keys</para>
553 <indexterm zone="ch-system-systemd systemd-cryptenroll">
554 <primary sortas="b-systemd-cryptenroll">systemd-cryptenroll</primary>
555 </indexterm>
556 </listitem>
557 </varlistentry>
558
[cba2d4e]559 <varlistentry id="systemd-delta">
560 <term><command>systemd-delta</command></term>
561 <listitem>
[9e7475a]562 <para>Is used to identify and compare configuration files in
[cba2d4e]563 <filename class="directory">/etc</filename> that override default
[1118b17]564 counterparts in <filename class="directory">/usr</filename></para>
[cba2d4e]565 <indexterm zone="ch-system-systemd systemd-delta">
566 <primary sortas="b-systemd-delta">systemd-delta</primary>
567 </indexterm>
568 </listitem>
569 </varlistentry>
570
571 <varlistentry id="systemd-detect-virt">
572 <term><command>systemd-detect-virt</command></term>
573 <listitem>
[9e7475a]574 <para>Detects whether the system is being run in a virtual
[8d35535]575 environment, and adjusts udev accordingly</para>
[cba2d4e]576 <indexterm zone="ch-system-systemd systemd-detect-virt">
577 <primary sortas="b-systemd-detect-virt">systemd-detect-virt</primary>
578 </indexterm>
579 </listitem>
580 </varlistentry>
581
[22009fb]582 <varlistentry id="systemd-dissect">
583 <term><command>systemd-dissect</command></term>
584 <listitem>
[8d35535]585 <para>Is used to inspect OS disk images</para>
[22009fb]586 <indexterm zone="ch-system-systemd systemd-dissect">
587 <primary sortas="b-systemd-dissect">systemd-dissect</primary>
588 </indexterm>
589 </listitem>
590 </varlistentry>
591
[1118b17]592 <varlistentry id="systemd-escape">
593 <term><command>systemd-escape</command></term>
594 <listitem>
[9e7475a]595 <para>Is used to escape strings for inclusion in systemd unit
[1118b17]596 names</para>
597 <indexterm zone="ch-system-systemd systemd-escape">
598 <primary sortas="b-systemd-escape">systemd-escape</primary>
599 </indexterm>
600 </listitem>
601 </varlistentry>
602
603 <varlistentry id="systemd-hwdb">
604 <term><command>systemd-hwdb</command></term>
605 <listitem>
[9e7475a]606 <para>Is used to manage the hardware database (hwdb)</para>
[1118b17]607 <indexterm zone="ch-system-systemd systemd-hwdb">
608 <primary sortas="b-systemd-hwdb">systemd-hwdb</primary>
609 </indexterm>
610 </listitem>
611 </varlistentry>
612
[78cc3be]613 <varlistentry id="systemd-id128">
614 <term><command>systemd-id128</command></term>
615 <listitem>
[9e7475a]616 <para>Generates and prints id128 strings</para>
[78cc3be]617 <indexterm zone="ch-system-systemd systemd-id128">
618 <primary sortas="b-systemd-id128">systemd-id128</primary>
619 </indexterm>
620 </listitem>
621 </varlistentry>
622
[cba2d4e]623 <varlistentry id="systemd-inhibit">
624 <term><command>systemd-inhibit</command></term>
625 <listitem>
[9e7475a]626 <para>Is used to execute a program with a shutdown, sleep or idle
627 inhibitor lock taken, preventing an action such as a system shutdown
[8d35535]628 until the process is completed</para>
[cba2d4e]629 <indexterm zone="ch-system-systemd systemd-inhibit">
630 <primary sortas="b-systemd-inhibit">systemd-inhibit</primary>
631 </indexterm>
632 </listitem>
633 </varlistentry>
634
635 <varlistentry id="systemd-machine-id-setup">
636 <term><command>systemd-machine-id-setup</command></term>
637 <listitem>
[9e7475a]638 <para>Is used by system installer tools to initialize the machine ID
[1118b17]639 stored in <filename>/etc/machine-id</filename> at install time with a
640 randomly generated ID</para>
[cba2d4e]641 <indexterm zone="ch-system-systemd systemd-machine-id-setup">
642 <primary sortas="b-systemd-machine-id-setup">systemd-machine-id-setup</primary>
643 </indexterm>
644 </listitem>
645 </varlistentry>
646
[13c8b42]647 <varlistentry id="systemd-mount">
648 <term><command>systemd-mount</command></term>
649 <listitem>
[8d35535]650 <para>Is used to temporarily mount or automount disks</para>
[13c8b42]651 <indexterm zone="ch-system-systemd systemd-mount">
652 <primary sortas="b-systemd-mount">systemd-mount</primary>
653 </indexterm>
654 </listitem>
655 </varlistentry>
656
[cba2d4e]657 <varlistentry id="systemd-notify">
658 <term><command>systemd-notify</command></term>
659 <listitem>
[9e7475a]660 <para>Is used by daemon scripts to notify the init system about status
[1118b17]661 changes</para>
[cba2d4e]662 <indexterm zone="ch-system-systemd systemd-notify">
663 <primary sortas="b-systemd-notify">systemd-notify</primary>
664 </indexterm>
665 </listitem>
666 </varlistentry>
667
668 <varlistentry id="systemd-nspawn">
669 <term><command>systemd-nspawn</command></term>
670 <listitem>
[9e7475a]671 <para>Is used to run a command or OS in a light-weight namespace
[1118b17]672 container</para>
[cba2d4e]673 <indexterm zone="ch-system-systemd systemd-nspawn">
674 <primary sortas="b-systemd-nspawn">systemd-nspawn</primary>
675 </indexterm>
676 </listitem>
677 </varlistentry>
678
[1118b17]679 <varlistentry id="systemd-path">
680 <term><command>systemd-path</command></term>
681 <listitem>
[9e7475a]682 <para>Is used to query system and user paths</para>
[1118b17]683 <indexterm zone="ch-system-systemd systemd-path">
684 <primary sortas="b-systemd-path">systemd-path</primary>
685 </indexterm>
686 </listitem>
687 </varlistentry>
688
[c06f49a]689 <varlistentry id="systemd-repart">
690 <term><command>systemd-repart</command></term>
691 <listitem>
[9e7475a]692 <para>Is used to grow and add partitions to a partition table when
[8d35535]693 systemd is used in an OS image (e.g. a container)</para>
[c06f49a]694 <indexterm zone="ch-system-systemd systemd-repart">
695 <primary sortas="b-systemd-repart">systemd-repart</primary>
696 </indexterm>
697 </listitem>
698 </varlistentry>
699
[1118b17]700 <varlistentry id="systemd-resolve">
701 <term><command>systemd-resolve</command></term>
702 <listitem>
[9e7475a]703 <para>Is used to resolve domain names, IPV4 and IPv6 addresses, DNS
[1118b17]704 resource records, and services</para>
705 <indexterm zone="ch-system-systemd systemd-resolve">
706 <primary sortas="b-systemd-resolve">systemd-resolve</primary>
707 </indexterm>
708 </listitem>
709 </varlistentry>
710
[cba2d4e]711 <varlistentry id="systemd-run">
712 <term><command>systemd-run</command></term>
713 <listitem>
[9e7475a]714 <para>Is used to create and start a transient .service or a .scope
715 unit and run the specified command in it. This is useful for
[8d35535]716 validating systemd units</para>
[cba2d4e]717 <indexterm zone="ch-system-systemd systemd-run">
718 <primary sortas="b-systemd-run">systemd-run</primary>
719 </indexterm>
720 </listitem>
721 </varlistentry>
722
[13c8b42]723 <varlistentry id="systemd-socket-activate">
724 <term><command>systemd-socket-activate</command></term>
725 <listitem>
[9e7475a]726 <para>Is used to listen on socket devices and launch a process upon
[8d35535]727 a successful connection to the socket</para>
[13c8b42]728 <indexterm zone="ch-system-systemd systemd-socket-activate">
729 <primary sortas="b-systemd-socket-activate">systemd-socket-activate</primary>
730 </indexterm>
731 </listitem>
732 </varlistentry>
733
[d7a9421]734 <varlistentry id="systemd-sysext">
735 <term><command>systemd-sysext</command></term>
736 <listitem>
[871fd2f]737 <para>Activates system extension images</para>
[d7a9421]738 <indexterm zone="ch-system-systemd systemd-sysext">
739 <primary sortas="b-systemd-sysext">systemd-sysext</primary>
740 </indexterm>
741 </listitem>
742 </varlistentry>
743
[cba2d4e]744 <varlistentry id="systemd-tmpfiles">
745 <term><command>systemd-tmpfiles</command></term>
746 <listitem>
[1118b17]747 <para>Creates, deletes and cleans up volatile and temporary files and
748 directories, based on the configuration file format and location
749 specified in
750 <filename class="directory">tmpfiles.d</filename> directories</para>
[cba2d4e]751 <indexterm zone="ch-system-systemd systemd-tmpfiles">
752 <primary sortas="b-systemd-tmpfiles">systemd-tmpfiles</primary>
753 </indexterm>
754 </listitem>
755 </varlistentry>
756
[78cc3be]757 <varlistentry id="systemd-umount">
758 <term><command>systemd-umount</command></term>
759 <listitem>
[9e7475a]760 <para>Unmounts mount points</para>
[78cc3be]761 <indexterm zone="ch-system-systemd systemd-umount">
762 <primary sortas="b-systemd-umount">systemd-umount</primary>
763 </indexterm>
764 </listitem>
765 </varlistentry>
766
[cba2d4e]767 <varlistentry id="systemd-tty-ask-password-agent">
768 <term><command>systemd-tty-ask-password-agent</command></term>
769 <listitem>
[9e7475a]770 <para>Is used to list and/or process pending systemd password
771 requests</para>
[cba2d4e]772 <indexterm zone="ch-system-systemd systemd-tty-ask-password-agent">
773 <primary sortas="b-systemd-tty-ask-password-agent">systemd-tty-ask-password-agent</primary>
774 </indexterm>
775 </listitem>
776 </varlistentry>
777
778 <varlistentry id="telinit">
779 <term><command>telinit</command></term>
780 <listitem>
[1118b17]781 <para>Tells <command>init</command> which run-level to change
782 to</para>
[cba2d4e]783 <indexterm zone="ch-system-systemd telinit">
784 <primary sortas="b-telinit">telinit</primary>
785 </indexterm>
786 </listitem>
787 </varlistentry>
788
789 <varlistentry id="timedatectl">
790 <term><command>timedatectl</command></term>
791 <listitem>
[9e7475a]792 <para>Is used to query and change the system clock and its settings
[cba2d4e]793 </para>
794 <indexterm zone="ch-system-systemd timedatectl">
795 <primary sortas="b-timedatectl">timedatectl</primary>
[f896e21c]796 </indexterm>
797 </listitem>
798 </varlistentry>
799
800 <varlistentry id="udevadm">
801 <term><command>udevadm</command></term>
802 <listitem>
[9e7475a]803 <para>Is a generic udev administration tool which controls the udevd
804 daemon, provides info from the Udev hardware database, monitors
805 uevents, waits for uevents to finish, tests udev configuration, and
806 triggers uevents for a given device</para>
[cba2d4e]807 <indexterm zone="ch-system-systemd udevadm">
[f896e21c]808 <primary sortas="b-udevadm">udevadm</primary>
809 </indexterm>
810 </listitem>
811 </varlistentry>
812
[cba2d4e]813 <varlistentry id="libsystemd">
814 <term><filename class="libraryfile">libsystemd</filename></term>
[f896e21c]815 <listitem>
[9e7475a]816 <para>Is the main systemd utility library</para>
[cba2d4e]817 <indexterm zone="ch-system-systemd libsystemd">
818 <primary sortas="c-libsystemd">libsystemd</primary>
[f896e21c]819 </indexterm>
820 </listitem>
821 </varlistentry>
822
823 <varlistentry id="libudev">
824 <term><filename class="libraryfile">libudev</filename></term>
825 <listitem>
[9e7475a]826 <para>Is a library to access Udev device information</para>
[cba2d4e]827 <indexterm zone="ch-system-systemd libudev">
[f896e21c]828 <primary sortas="c-libudev">libudev</primary>
829 </indexterm>
830 </listitem>
831 </varlistentry>
832
833 </variablelist>
834
835 </sect2>
836
837</sect1>
Note: See TracBrowser for help on using the repository browser.