systemd.xml 28 KB

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