systemd.xml 27 KB

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