systemd.xml.next 26 KB

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