systemd.xml 27 KB

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