systemd.xml 27 KB

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