systemd.xml 27 KB

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