systemd.xml 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789
  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>Create a symlink to work around missing xsltproc:</para>
  34. <screen><userinput remap="pre">ln -sf /tools/bin/true /usr/bin/xsltproc</userinput></screen>
  35. <para>Because we have not yet installed the final version of Util-Linux,
  36. create links to the libraries in the approprite location:</para>
  37. <screen><userinput remap="pre">for file in /tools/lib/lib{blkid,mount,uuid}.so*; do
  38. ln -sf $file /usr/lib/
  39. done</userinput></screen>
  40. <para>Set up the man pages:</para>
  41. <screen><userinput remap="pre">tar -xf ../systemd-man-pages-&systemd-version;.tar.xz</userinput></screen>
  42. <para>Remove tests that cannot be built in chroot:</para>
  43. <screen><userinput remap="pre">sed '177,$ d' -i src/resolve/meson.build</userinput></screen>
  44. <para>Remove an unneeded group,
  45. <systemitem class="groupname">render</systemitem>, from the default udev
  46. rules:</para>
  47. <screen><userinput remap="pre">sed -i 's/GROUP="render", //' rules/50-udev-default.rules.in</userinput></screen>
  48. <!-- EDITORS NOTE: At the next systemd release, see if the CFLAGS can be removed. -->
  49. <para>Prepare systemd for compilation:</para>
  50. <screen><userinput remap="configure">mkdir -p build
  51. cd build
  52. PKG_CONFIG_PATH="/usr/lib/pkgconfig:/tools/lib/pkgconfig" \
  53. LANG=en_US.UTF-8 \
  54. CFLAGS+="-Wno-format-overflow" \
  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. -Dkmod-path=/bin/kmod \
  64. -Dldconfig=false \
  65. -Dmount-path=/bin/mount \
  66. -Drootprefix= \
  67. -Drootlibdir=/lib \
  68. -Dsplit-usr=true \
  69. -Dsulogin-path=/sbin/sulogin \
  70. -Dsysusers=false \
  71. -Dumount-path=/bin/umount \
  72. -Db_lto=false \
  73. -Drpmmacrosdir=no \
  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. <varlistentry>
  143. <term><parameter>-Drpmmacrosdir=no</parameter></term>
  144. <listitem>
  145. <para>This switch disables installation of RPM Macros
  146. for use with systemd because LFS does not support RPM.</para>
  147. </listitem>
  148. </varlistentry>
  149. </variablelist>
  150. <para>Compile the package:</para>
  151. <screen><userinput remap="make">LANG=en_US.UTF-8 ninja</userinput></screen>
  152. <!--
  153. <para>To test the package, execute the following command:</para>
  154. <screen><userinput remap="test">LANG=en_US.UTF-8 ninja test</userinput></screen>
  155. -->
  156. <para>Install the package:</para>
  157. <screen><userinput remap="install">LANG=en_US.UTF-8 ninja install</userinput></screen>
  158. <para>Remove an unnecessary symbolic link:</para>
  159. <screen><userinput remap="install">rm -f /usr/bin/xsltproc</userinput></screen>
  160. <para>Remove symbolic links to Util-Linux libraries:</para>
  161. <screen><userinput remap="install">rm -fv /usr/lib/lib{blkid,uuid,mount}.so*</userinput></screen>
  162. <para>Create the <filename>/etc/machine-id</filename> file needed by
  163. <command>systemd-journald</command>:</para>
  164. <screen><userinput remap="adjust">systemd-machine-id-setup</userinput></screen>
  165. <para>Prevent systemd from creating <filename>/run/nologin</filename>
  166. to allow unprivileged user logins without
  167. <application>systemd-logind</application>:</para>
  168. <screen><userinput remap="adjust">rm -f /usr/lib/tmpfiles.d/systemd-nologin.conf</userinput></screen>
  169. </sect2>
  170. <sect2 id="contents-systemd" role="content">
  171. <title>Contents of systemd</title>
  172. <segmentedlist>
  173. <segtitle>Installed programs</segtitle>
  174. <segtitle>Installed libraries</segtitle>
  175. <segtitle>Installed directories</segtitle>
  176. <seglistitem>
  177. <seg>bootctl, busctl, coredumpctl, halt (symlink to systemctl),
  178. hostnamectl, init, journalctl, kernel-install, localectl, loginctl,
  179. machinectl, networkctl, portablectl, poweroff (symlink to
  180. systemctl), reboot (symlink to systemctl), resolvconf (symlink to
  181. resolvectl), resolvectl, runlevel (symlink to systemctl), shutdown
  182. (symlink to systemctl), systemctl, systemd-analyze,
  183. systemd-ask-password, systemd-cat, systemd-cgls, systemd-cgtop,
  184. systemd-delta, systemd-detect-virt, systemd-escape, systemd-hwdb,
  185. systemd-id128, systemd-inhibit, systemd-machine-id-setup,
  186. systemd-mount, systemd-notify, systemd-nspawn, systemd-path,
  187. systemd-resolve (symlink to resolvectl), systemd-run,
  188. systemd-socket-activate, systemd-stdio-bridge, systemd-tmpfiles,
  189. systemd-tty-ask-password-agent, systemd-umount (symlink to
  190. systemd-mount), telinit (symlink to systemctl), timedatectl, and
  191. udevadm</seg>
  192. <seg>libnss_myhostname.so.2, libnss_mymachines.so.2,
  193. libnss_resolve.so.2, libnss_systemd.so.2,
  194. libsystemd.so, libsystemd-shared-&systemd-version;.so (in /lib/systemd),
  195. and libudev.so</seg>
  196. <seg>/etc/binfmt.d, /etc/init.d, /etc/kernel, /etc/modules-load.d,
  197. /etc/sysctl.d, /etc/systemd, /etc/tmpfiles.d, /etc/udev,
  198. /etc/xdg/systemd, /lib/systemd, /lib/udev, /usr/include/systemd,
  199. /usr/lib/binfmt.d, /usr/lib/kernel, /usr/lib/modules-load.d,
  200. /usr/lib/sysctl.d, /usr/lib/systemd, /usr/lib/tmpfiles.d,
  201. /usr/share/doc/systemd-&systemd-version;, /usr/share/factory,
  202. /usr/share/systemd, /var/lib/systemd, and /var/log/journal</seg>
  203. </seglistitem>
  204. </segmentedlist>
  205. <variablelist>
  206. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  207. <?dbfo list-presentation="list"?>
  208. <?dbhtml list-presentation="table"?>
  209. <varlistentry id="bootctl">
  210. <term><command>bootctl</command></term>
  211. <listitem>
  212. <para>Used to query the firmware and boot manager settings</para>
  213. <indexterm zone="ch-system-systemd bootctl">
  214. <primary sortas="b-bootctl">bootctl</primary>
  215. </indexterm>
  216. </listitem>
  217. </varlistentry>
  218. <varlistentry id="busctl">
  219. <term><command>busctl</command></term>
  220. <listitem>
  221. <para>Used to introspect and monitor the D-Bus bus</para>
  222. <indexterm zone="ch-system-systemd busctl">
  223. <primary sortas="b-busctl">busctl</primary>
  224. </indexterm>
  225. </listitem>
  226. </varlistentry>
  227. <varlistentry id="coredumpctl">
  228. <term><command>coredumpctl</command></term>
  229. <listitem>
  230. <para>Used to retrieve coredumps from the systemd journal</para>
  231. <indexterm zone="ch-system-systemd coredumpctl">
  232. <primary sortas="b-coredumpctl">coredumpctl</primary>
  233. </indexterm>
  234. </listitem>
  235. </varlistentry>
  236. <varlistentry id="halt">
  237. <term><command>halt</command></term>
  238. <listitem>
  239. <para>Normally invokes <command>shutdown</command> with the
  240. <parameter>-h</parameter> option, except when already in run-level 0,
  241. then it tells the kernel to halt the system; it notes in the
  242. file <filename>/var/log/wtmp</filename> that the system is being
  243. brought down</para>
  244. <indexterm zone="ch-system-systemd halt">
  245. <primary sortas="b-halt">halt</primary>
  246. </indexterm>
  247. </listitem>
  248. </varlistentry>
  249. <varlistentry id="hostnamectl">
  250. <term><command>hostnamectl</command></term>
  251. <listitem>
  252. <para>Used to query and change the system hostname and related
  253. settings</para>
  254. <indexterm zone="ch-system-systemd hostnamectl">
  255. <primary sortas="b-hostnamectl">hostnamectl</primary>
  256. </indexterm>
  257. </listitem>
  258. </varlistentry>
  259. <varlistentry id="init">
  260. <term><command>init</command></term>
  261. <listitem>
  262. <para>The first process to be started when the kernel has initialized
  263. the hardware which takes over the boot process and starts all
  264. processes according to its configuration files</para>
  265. <indexterm zone="ch-system-systemd init">
  266. <primary sortas="b-init">init</primary>
  267. </indexterm>
  268. </listitem>
  269. </varlistentry>
  270. <varlistentry id="journalctl">
  271. <term><command>journalctl</command></term>
  272. <listitem>
  273. <para>Used to query the contents of the systemd journal</para>
  274. <indexterm zone="ch-system-systemd journalctl">
  275. <primary sortas="b-journalctl">journalctl</primary>
  276. </indexterm>
  277. </listitem>
  278. </varlistentry>
  279. <varlistentry id="kernel-install">
  280. <term><command>kernel-install</command></term>
  281. <listitem>
  282. <para>Used to add and remove kernel and initramfs images to and
  283. from /boot</para>
  284. <indexterm zone="ch-system-systemd kernel-install">
  285. <primary sortas="b-kernel-install">kernel-install</primary>
  286. </indexterm>
  287. </listitem>
  288. </varlistentry>
  289. <varlistentry id="localectl">
  290. <term><command>localectl</command></term>
  291. <listitem>
  292. <para>Used to query and change the system locale and keyboard layout
  293. settings</para>
  294. <indexterm zone="ch-system-systemd localectl">
  295. <primary sortas="b-localectl">localectl</primary>
  296. </indexterm>
  297. </listitem>
  298. </varlistentry>
  299. <varlistentry id="loginctl">
  300. <term><command>loginctl</command></term>
  301. <listitem>
  302. <para>Used to introspect and control the state of the systemd Login
  303. Manager</para>
  304. <indexterm zone="ch-system-systemd loginctl">
  305. <primary sortas="b-loginctl">loginctl</primary>
  306. </indexterm>
  307. </listitem>
  308. </varlistentry>
  309. <varlistentry id="machinectl">
  310. <term><command>machinectl</command></term>
  311. <listitem>
  312. <para>Used to introspect and control the state of the systemd Virtual
  313. Machine and Container Registration Manager</para>
  314. <indexterm zone="ch-system-systemd machinectl">
  315. <primary sortas="b-machinectl">machinectl</primary>
  316. </indexterm>
  317. </listitem>
  318. </varlistentry>
  319. <varlistentry id="networkctl">
  320. <term><command>networkctl</command></term>
  321. <listitem>
  322. <para>Used to introspect the state of the network links as seen by
  323. systemd-networkd</para>
  324. <indexterm zone="ch-system-systemd networkctl">
  325. <primary sortas="b-networkctl">networkctl</primary>
  326. </indexterm>
  327. </listitem>
  328. </varlistentry>
  329. <varlistentry id="portablectl">
  330. <term><command>portablectl</command></term>
  331. <listitem>
  332. <para>Used to attach or detach portable services from the local
  333. system</para>
  334. <indexterm zone="ch-system-systemd portablectl">
  335. <primary sortas="b-portablectl">portablectl</primary>
  336. </indexterm>
  337. </listitem>
  338. </varlistentry>
  339. <varlistentry id="poweroff">
  340. <term><command>poweroff</command></term>
  341. <listitem>
  342. <para>Tells the kernel to halt the system and switch off the computer
  343. (see <command>halt</command>)</para>
  344. <indexterm zone="ch-system-systemd poweroff">
  345. <primary sortas="b-poweroff">poweroff</primary>
  346. </indexterm>
  347. </listitem>
  348. </varlistentry>
  349. <varlistentry id="reboot">
  350. <term><command>reboot</command></term>
  351. <listitem>
  352. <para>Tells the kernel to reboot the system (see
  353. <command>halt</command>)</para>
  354. <indexterm zone="ch-system-systemd reboot">
  355. <primary sortas="b-reboot">reboot</primary>
  356. </indexterm>
  357. </listitem>
  358. </varlistentry>
  359. <varlistentry id="resolvconf">
  360. <term><command>resolvconf</command></term>
  361. <listitem>
  362. <para>Register DNS server and domain configuration with
  363. <command>systemd-resolved</command></para>
  364. <indexterm zone="ch-system-systemd resolvconf">
  365. <primary sortas="b-resolvconf">resolvconf</primary>
  366. </indexterm>
  367. </listitem>
  368. </varlistentry>
  369. <varlistentry id="resolvectl">
  370. <term><command>resolvectl</command></term>
  371. <listitem>
  372. <para>Send control commands to the network name resolution
  373. manager, or resolve domain names, IPv4 and IPv6 addresses,
  374. DNS records, and services.</para>
  375. <indexterm zone="ch-system-systemd resolvectl">
  376. <primary sortas="b-resolvectl">resolvectl</primary>
  377. </indexterm>
  378. </listitem>
  379. </varlistentry>
  380. <varlistentry id="runlevel">
  381. <term><command>runlevel</command></term>
  382. <listitem>
  383. <para>Reports the previous and the current run-level, as noted in the
  384. last run-level record in <filename>/var/run/utmp</filename></para>
  385. <indexterm zone="ch-system-systemd runlevel">
  386. <primary sortas="b-runlevel">runlevel</primary>
  387. </indexterm>
  388. </listitem>
  389. </varlistentry>
  390. <varlistentry id="shutdown">
  391. <term><command>shutdown</command></term>
  392. <listitem>
  393. <para>Brings the system down in a secure way, signaling all processes
  394. and notifying all logged-in users</para>
  395. <indexterm zone="ch-system-systemd shutdown">
  396. <primary sortas="b-shutdown">shutdown</primary>
  397. </indexterm>
  398. </listitem>
  399. </varlistentry>
  400. <varlistentry id="systemctl">
  401. <term><command>systemctl</command></term>
  402. <listitem>
  403. <para>Used to introspect and control the state of the systemd system
  404. and service manager</para>
  405. <indexterm zone="ch-system-systemd systemctl">
  406. <primary sortas="b-systemctl">systemctl</primary>
  407. </indexterm>
  408. </listitem>
  409. </varlistentry>
  410. <varlistentry id="systemd-analyze">
  411. <term><command>systemd-analyze</command></term>
  412. <listitem>
  413. <para>Used to determine system boot-up performance of the current
  414. boot</para>
  415. <indexterm zone="ch-system-systemd systemd-analyze">
  416. <primary sortas="b-systemd-analyze">systemd-analyze</primary>
  417. </indexterm>
  418. </listitem>
  419. </varlistentry>
  420. <varlistentry id="systemd-ask-password">
  421. <term><command>systemd-ask-password</command></term>
  422. <listitem>
  423. <para>Used to query a system password or passphrase from the user,
  424. using a question message specified on the command line</para>
  425. <indexterm zone="ch-system-systemd systemd-ask-password">
  426. <primary sortas="b-systemd-ask-password">systemd-ask-password</primary>
  427. </indexterm>
  428. </listitem>
  429. </varlistentry>
  430. <varlistentry id="systemd-cat">
  431. <term><command>systemd-cat</command></term>
  432. <listitem>
  433. <para>Used to connect STDOUT and STDERR of a process with the Journal
  434. </para>
  435. <indexterm zone="ch-system-systemd systemd-cat">
  436. <primary sortas="b-systemd-cat">systemd-cat</primary>
  437. </indexterm>
  438. </listitem>
  439. </varlistentry>
  440. <varlistentry id="systemd-cgls">
  441. <term><command>systemd-cgls</command></term>
  442. <listitem>
  443. <para>Recursively shows the contents of the selected Linux control
  444. group hierarchy in a tree</para>
  445. <indexterm zone="ch-system-systemd systemd-cgls">
  446. <primary sortas="b-systemd-cgls">systemd-cgls</primary>
  447. </indexterm>
  448. </listitem>
  449. </varlistentry>
  450. <varlistentry id="systemd-cgtop">
  451. <term><command>systemd-cgtop</command></term>
  452. <listitem>
  453. <para>Shows the top control groups of the local Linux control group
  454. hierarchy, ordered by their CPU, memory and disk I/O load</para>
  455. <indexterm zone="ch-system-systemd systemd-cgtop">
  456. <primary sortas="b-systemd-cgtop">systemd-cgtop</primary>
  457. </indexterm>
  458. </listitem>
  459. </varlistentry>
  460. <varlistentry id="systemd-delta">
  461. <term><command>systemd-delta</command></term>
  462. <listitem>
  463. <para>Used to identify and compare configuration files in
  464. <filename class="directory">/etc</filename> that override default
  465. counterparts in <filename class="directory">/usr</filename></para>
  466. <indexterm zone="ch-system-systemd systemd-delta">
  467. <primary sortas="b-systemd-delta">systemd-delta</primary>
  468. </indexterm>
  469. </listitem>
  470. </varlistentry>
  471. <varlistentry id="systemd-detect-virt">
  472. <term><command>systemd-detect-virt</command></term>
  473. <listitem>
  474. <para>Detects execution in a virtualized environment</para>
  475. <indexterm zone="ch-system-systemd systemd-detect-virt">
  476. <primary sortas="b-systemd-detect-virt">systemd-detect-virt</primary>
  477. </indexterm>
  478. </listitem>
  479. </varlistentry>
  480. <varlistentry id="systemd-escape">
  481. <term><command>systemd-escape</command></term>
  482. <listitem>
  483. <para>Used to escape strings for inclusion in systemd unit
  484. names</para>
  485. <indexterm zone="ch-system-systemd systemd-escape">
  486. <primary sortas="b-systemd-escape">systemd-escape</primary>
  487. </indexterm>
  488. </listitem>
  489. </varlistentry>
  490. <varlistentry id="systemd-hwdb">
  491. <term><command>systemd-hwdb</command></term>
  492. <listitem>
  493. <para>Used to manage hardware database (hwdb)</para>
  494. <indexterm zone="ch-system-systemd systemd-hwdb">
  495. <primary sortas="b-systemd-hwdb">systemd-hwdb</primary>
  496. </indexterm>
  497. </listitem>
  498. </varlistentry>
  499. <varlistentry id="systemd-id128">
  500. <term><command>systemd-id128</command></term>
  501. <listitem>
  502. <para>Generate and print id128 strings</para>
  503. <indexterm zone="ch-system-systemd systemd-id128">
  504. <primary sortas="b-systemd-id128">systemd-id128</primary>
  505. </indexterm>
  506. </listitem>
  507. </varlistentry>
  508. <varlistentry id="systemd-inhibit">
  509. <term><command>systemd-inhibit</command></term>
  510. <listitem>
  511. <para>Used to execute a program with a shutdown, sleep or idle
  512. inhibitor lock taken</para>
  513. <indexterm zone="ch-system-systemd systemd-inhibit">
  514. <primary sortas="b-systemd-inhibit">systemd-inhibit</primary>
  515. </indexterm>
  516. </listitem>
  517. </varlistentry>
  518. <varlistentry id="systemd-machine-id-setup">
  519. <term><command>systemd-machine-id-setup</command></term>
  520. <listitem>
  521. <para>Used by system installer tools to initialize the machine ID
  522. stored in <filename>/etc/machine-id</filename> at install time with a
  523. randomly generated ID</para>
  524. <indexterm zone="ch-system-systemd systemd-machine-id-setup">
  525. <primary sortas="b-systemd-machine-id-setup">systemd-machine-id-setup</primary>
  526. </indexterm>
  527. </listitem>
  528. </varlistentry>
  529. <varlistentry id="systemd-mount">
  530. <term><command>systemd-mount</command></term>
  531. <listitem>
  532. <para>A tool to temporarily mount or auto-mount a drive.</para>
  533. <indexterm zone="ch-system-systemd systemd-mount">
  534. <primary sortas="b-systemd-mount">systemd-mount</primary>
  535. </indexterm>
  536. </listitem>
  537. </varlistentry>
  538. <varlistentry id="systemd-notify">
  539. <term><command>systemd-notify</command></term>
  540. <listitem>
  541. <para>Used by daemon scripts to notify the init system about status
  542. changes</para>
  543. <indexterm zone="ch-system-systemd systemd-notify">
  544. <primary sortas="b-systemd-notify">systemd-notify</primary>
  545. </indexterm>
  546. </listitem>
  547. </varlistentry>
  548. <varlistentry id="systemd-nspawn">
  549. <term><command>systemd-nspawn</command></term>
  550. <listitem>
  551. <para>Used to run a command or OS in a light-weight namespace
  552. container</para>
  553. <indexterm zone="ch-system-systemd systemd-nspawn">
  554. <primary sortas="b-systemd-nspawn">systemd-nspawn</primary>
  555. </indexterm>
  556. </listitem>
  557. </varlistentry>
  558. <varlistentry id="systemd-path">
  559. <term><command>systemd-path</command></term>
  560. <listitem>
  561. <para>Used to query system and user paths</para>
  562. <indexterm zone="ch-system-systemd systemd-path">
  563. <primary sortas="b-systemd-path">systemd-path</primary>
  564. </indexterm>
  565. </listitem>
  566. </varlistentry>
  567. <varlistentry id="systemd-resolve">
  568. <term><command>systemd-resolve</command></term>
  569. <listitem>
  570. <para>Used to resolve domain names, IPV4 and IPv6 addresses, DNS
  571. resource records, and services</para>
  572. <indexterm zone="ch-system-systemd systemd-resolve">
  573. <primary sortas="b-systemd-resolve">systemd-resolve</primary>
  574. </indexterm>
  575. </listitem>
  576. </varlistentry>
  577. <varlistentry id="systemd-run">
  578. <term><command>systemd-run</command></term>
  579. <listitem>
  580. <para>Used to create and start a transient .service or a .scope unit
  581. and run the specified command in it</para>
  582. <indexterm zone="ch-system-systemd systemd-run">
  583. <primary sortas="b-systemd-run">systemd-run</primary>
  584. </indexterm>
  585. </listitem>
  586. </varlistentry>
  587. <!-- <varlistentry id="systemd-stdio-bridge">
  588. <term><command>systemd-stdio-bridge</command></term>
  589. <listitem>
  590. <para>To be completed</para>
  591. <indexterm zone="ch-system-systemd systemd-stdio-bridge">
  592. <primary sortas="b-systemd-stdio-bridge">systemd-stdio-bridge</primary>
  593. </indexterm>
  594. </listitem>
  595. </varlistentry> -->
  596. <varlistentry id="systemd-socket-activate">
  597. <term><command>systemd-socket-activate</command></term>
  598. <listitem>
  599. <para>A tool to listen on socket devices and launch a process upon
  600. connection.</para>
  601. <indexterm zone="ch-system-systemd systemd-socket-activate">
  602. <primary sortas="b-systemd-socket-activate">systemd-socket-activate</primary>
  603. </indexterm>
  604. </listitem>
  605. </varlistentry>
  606. <varlistentry id="systemd-tmpfiles">
  607. <term><command>systemd-tmpfiles</command></term>
  608. <listitem>
  609. <para>Creates, deletes and cleans up volatile and temporary files and
  610. directories, based on the configuration file format and location
  611. specified in
  612. <filename class="directory">tmpfiles.d</filename> directories</para>
  613. <indexterm zone="ch-system-systemd systemd-tmpfiles">
  614. <primary sortas="b-systemd-tmpfiles">systemd-tmpfiles</primary>
  615. </indexterm>
  616. </listitem>
  617. </varlistentry>
  618. <varlistentry id="systemd-umount">
  619. <term><command>systemd-umount</command></term>
  620. <listitem>
  621. <para>Unmount mount points</para>
  622. <indexterm zone="ch-system-systemd systemd-umount">
  623. <primary sortas="b-systemd-umount">systemd-umount</primary>
  624. </indexterm>
  625. </listitem>
  626. </varlistentry>
  627. <varlistentry id="systemd-tty-ask-password-agent">
  628. <term><command>systemd-tty-ask-password-agent</command></term>
  629. <listitem>
  630. <para>Used to list or process pending systemd password requests</para>
  631. <indexterm zone="ch-system-systemd systemd-tty-ask-password-agent">
  632. <primary sortas="b-systemd-tty-ask-password-agent">systemd-tty-ask-password-agent</primary>
  633. </indexterm>
  634. </listitem>
  635. </varlistentry>
  636. <varlistentry id="telinit">
  637. <term><command>telinit</command></term>
  638. <listitem>
  639. <para>Tells <command>init</command> which run-level to change
  640. to</para>
  641. <indexterm zone="ch-system-systemd telinit">
  642. <primary sortas="b-telinit">telinit</primary>
  643. </indexterm>
  644. </listitem>
  645. </varlistentry>
  646. <varlistentry id="timedatectl">
  647. <term><command>timedatectl</command></term>
  648. <listitem>
  649. <para>Used to query and change the system clock and its settings
  650. </para>
  651. <indexterm zone="ch-system-systemd timedatectl">
  652. <primary sortas="b-timedatectl">timedatectl</primary>
  653. </indexterm>
  654. </listitem>
  655. </varlistentry>
  656. <varlistentry id="udevadm">
  657. <term><command>udevadm</command></term>
  658. <listitem>
  659. <para>Generic udev administration tool: controls the udevd daemon,
  660. provides info from the Udev database, monitors uevents, waits for
  661. uevents to finish, tests udev configuration, and triggers uevents
  662. for a given device</para>
  663. <indexterm zone="ch-system-systemd udevadm">
  664. <primary sortas="b-udevadm">udevadm</primary>
  665. </indexterm>
  666. </listitem>
  667. </varlistentry>
  668. <varlistentry id="libsystemd">
  669. <term><filename class="libraryfile">libsystemd</filename></term>
  670. <listitem>
  671. <para>The main systemd utility library</para>
  672. <indexterm zone="ch-system-systemd libsystemd">
  673. <primary sortas="c-libsystemd">libsystemd</primary>
  674. </indexterm>
  675. </listitem>
  676. </varlistentry>
  677. <varlistentry id="libudev">
  678. <term><filename class="libraryfile">libudev</filename></term>
  679. <listitem>
  680. <para>A library to access Udev device information</para>
  681. <indexterm zone="ch-system-systemd libudev">
  682. <primary sortas="c-libudev">libudev</primary>
  683. </indexterm>
  684. </listitem>
  685. </varlistentry>
  686. </variablelist>
  687. </sect2>
  688. </sect1>