systemd.xml 26 KB

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