systemd.xml 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-system-systemd" role="wrap">
  8. <?dbhtml filename="systemd.html"?>
  9. <sect1info condition="script">
  10. <productname>systemd</productname>
  11. <productnumber>&systemd-version;</productnumber>
  12. <address>&systemd-url;</address>
  13. </sect1info>
  14. <title>Systemd-&systemd-version;</title>
  15. <indexterm zone="ch-system-systemd">
  16. <primary sortas="a-Systemd">Systemd</primary>
  17. </indexterm>
  18. <sect2 role="package">
  19. <title/>
  20. <para>The Systemd package contains programs for controlling the startup,
  21. running, and shutdown of the system.</para>
  22. <segmentedlist>
  23. <segtitle>&buildtime;</segtitle>
  24. <segtitle>&diskspace;</segtitle>
  25. <seglistitem>
  26. <seg>&systemd-ch6-sbu;</seg>
  27. <seg>&systemd-ch6-du;</seg>
  28. </seglistitem>
  29. </segmentedlist>
  30. </sect2>
  31. <sect2 role="installation">
  32. <title>Installation of Systemd</title>
  33. <para>First, create a file to allow Systemd to build when using Util-Linux
  34. built in Chapter 5:</para>
  35. <screen><userinput remap="pre">cat &gt; config.cache &lt;&lt; "EOF"
  36. <literal>KILL=/bin/kill
  37. HAVE_BLKID=1
  38. BLKID_LIBS="-lblkid"
  39. BLKID_CFLAGS="-I/tools/include/blkid"
  40. cc_cv_CFLAGS__flto=no</literal>
  41. EOF</userinput></screen>
  42. <para>Additionally, fix a build error when using Util-Linux built in
  43. Chapter 5:</para>
  44. <screen><userinput remap="pre">sed -i "s:blkid/::" $(grep -rl "blkid/blkid.h")</userinput></screen>
  45. <para>Apply a patch so that compat <command>pkg-config</command> files get
  46. installed without installing compat libs which are useless on LFS:</para>
  47. <screen><userinput remap="pre">patch -Np1 -i ../&systemd-compat-patch;</userinput></screen>
  48. <para>Prepare Systemd for compilation:</para>
  49. <screen><userinput remap="configure">CFLAGS="-fno-lto" ./configure --prefix=/usr \
  50. --sysconfdir=/etc \
  51. --localstatedir=/var \
  52. --config-cache \
  53. --with-rootprefix= \
  54. --with-rootlibdir=/lib \
  55. --enable-split-usr \
  56. --disable-gudev \
  57. --without-python \
  58. --docdir=/usr/share/doc/systemd-&systemd-version; \
  59. --with-dbuspolicydir=/etc/dbus-1/system.d \
  60. --with-dbusinterfacedir=/usr/share/dbus-1/interfaces \
  61. --with-dbussessionservicedir=/usr/share/dbus-1/services \
  62. --with-dbussystemservicedir=/usr/share/dbus-1/system-services</userinput></screen>
  63. <variablelist>
  64. <title>The meaning of the configure options:</title>
  65. <varlistentry>
  66. <term><parameter>--config-cache</parameter></term>
  67. <listitem>
  68. <para>This switch tells the build system to use
  69. the <filename>config.cache</filename> file which
  70. was created earlier.</para>
  71. </listitem>
  72. </varlistentry>
  73. <varlistentry>
  74. <term><parameter>--with-root*</parameter></term>
  75. <listitem>
  76. <para>These switches ensure that core programs and
  77. shared libraries are installed in the subdirectories
  78. of the root partition.</para>
  79. </listitem>
  80. </varlistentry>
  81. <varlistentry>
  82. <term><parameter>--enable-split-usr</parameter></term>
  83. <listitem>
  84. <para>This switch ensures that Systemd will work on
  85. systems where /bin, /lib and /sbin directories are not
  86. symlinks to their /usr counterparts.</para>
  87. </listitem>
  88. </varlistentry>
  89. <varlistentry>
  90. <term><parameter>--disable-gudev --without-python</parameter></term>
  91. <listitem>
  92. <para>These switches disable optional features because
  93. LFS does not provide their dependencies.</para>
  94. </listitem>
  95. </varlistentry>
  96. <varlistentry>
  97. <term><parameter>--with-dbus*</parameter></term>
  98. <listitem>
  99. <para>These switches ensure that D-Bus configuratil files
  100. get installed in the correct locations.</para>
  101. </listitem>
  102. </varlistentry>
  103. </variablelist>
  104. <para>Compile the package:</para>
  105. <screen><userinput remap="make">make LIBRARY_PATH=/tools/lib</userinput></screen>
  106. <para>First prevent few broken test cases from running:</para>
  107. <screen><userinput remap="test">sed -e "s:test/udev-test.pl::g" \
  108. -e "s:test-bus-cleanup\$(EXEEXT) ::g" \
  109. -e "s:test-bus-gvariant\$(EXEEXT) ::g" \
  110. -i Makefile</userinput></screen>
  111. <para>To test the results, issue:</para>
  112. <screen><userinput remap="test">make -k check</userinput></screen>
  113. <para>Note that some tests might fail because the test are being run in a
  114. chroot environment. For full test coverage, the test suite should be run
  115. from a system booted using Systemd.</para>
  116. <para>Install the package:</para>
  117. <screen><userinput remap="install">make LD_LIBRARY_PATH=/tools/lib install</userinput></screen>
  118. <para>Move NSS myhostname library to <filename
  119. class="directory">/lib</filename>:</para>
  120. <screen><userinput remap="install">mv -v /usr/lib/libnss_myhostname.so.2 /lib</userinput></screen>
  121. <para>Remove an unnecessary directory:</para>
  122. <screen><userinput remap="install">rm -rfv /usr/lib/rpm</userinput></screen>
  123. <para>Create the Sysvinit compatibility symlinks, so Systemd is used
  124. as the default init system:</para>
  125. <screen><userinput remap="install">for tool in runlevel reboot shutdown poweroff halt telinit; do
  126. ln -sfv ../bin/systemctl /sbin/${tool}
  127. done
  128. ln -sfv ../lib/systemd/systemd /sbin/init</userinput></screen>
  129. <para>Remove a reference to a non-existent group:</para>
  130. <screen><userinput remap="install">sed -i "s:0775 root lock:0755 root root:g" /usr/lib/tmpfiles.d/legacy.conf</userinput></screen>
  131. <para>Create the <filename>/etc/machine-id</filename> file needed by
  132. Journald:</para>
  133. <screen><userinput remap="install">systemd-machine-id-setup</userinput></screen>
  134. </sect2>
  135. <sect2 id="contents-systemd" role="content">
  136. <title>Contents of Systemd</title>
  137. <segmentedlist>
  138. <segtitle>Installed programs</segtitle>
  139. <segtitle>Installed libraries</segtitle>
  140. <segtitle>Installed directories</segtitle>
  141. <seglistitem>
  142. <seg>bootctl, busctl, halt, hostnamectl, init, journalctl, kernel-install,
  143. localectl, loginctl, machinectl, poweroff, reboot, runlevel, shutdown,
  144. systemctl, systemd-analyze, systemd-ask-password, systemd-cat, systemd-cgls,
  145. systemd-cgtop, systemd-coredumpctl, systemd-delta, systemd-detect-virt,
  146. systemd-inhibit, systemd-machine-id-setup, systemd-notify, systemd-nspawn,
  147. systemd-run, systemd-stdio-bridge, systemd-tmpfiles, systemd-tty-ask-password-agent,
  148. telinit, timedatectl, and udevadm</seg>
  149. <seg>libnss_myhostname.so.2, libsystemd.so, libudev.so</seg>
  150. <seg>/etc/binfmt.d, /etc/init.d, /etc/kernel, /etc/modules-load.d,
  151. /etc/sysctl.d, /etc/systemd, /etc/tmpfiles.d, /etc/udev,
  152. /etc/xdg/systemd, /lib/systemd, /lib/udev, /usr/include/systemd,
  153. /usr/lib/binfmt.d, /usr/lib/kernel, /usr/lib/modules-load.d,
  154. /usr/lib/sysctl.d, /usr/lib/systemd, /usr/lib/tmpfiles.d,
  155. /usr/share/doc/systemd-&systemd-version;, /usr/share/systemd,
  156. /var/lib/systemd, /var/log/journal</seg>
  157. </seglistitem>
  158. </segmentedlist>
  159. <variablelist>
  160. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  161. <?dbfo list-presentation="list"?>
  162. <?dbhtml list-presentation="table"?>
  163. <varlistentry id="bootctl">
  164. <term><command>bootctl</command></term>
  165. <listitem>
  166. <para>used to query the firmware and boot manager settings.</para>
  167. <indexterm zone="ch-system-systemd bootctl">
  168. <primary sortas="b-bootctl">bootctl</primary>
  169. </indexterm>
  170. </listitem>
  171. </varlistentry>
  172. <varlistentry id="busctl">
  173. <term><command>busctl</command></term>
  174. <listitem>
  175. <para>used to introspect and monitor the D-Bus bus.</para>
  176. <indexterm zone="ch-system-systemd busctl">
  177. <primary sortas="b-busctl">busctl</primary>
  178. </indexterm>
  179. </listitem>
  180. </varlistentry>
  181. <varlistentry id="halt">
  182. <term><command>halt</command></term>
  183. <listitem>
  184. <para>Normally invokes <command>shutdown</command> with the
  185. <parameter>-h</parameter> option, except when already in run-level 0,
  186. then it tells the kernel to halt the system; it notes in the
  187. file <filename>/var/log/wtmp</filename> that the system is being
  188. brought down.</para>
  189. <indexterm zone="ch-system-systemd halt">
  190. <primary sortas="b-halt">halt</primary>
  191. </indexterm>
  192. </listitem>
  193. </varlistentry>
  194. <varlistentry id="hostnamectl">
  195. <term><command>hostnamectl</command></term>
  196. <listitem>
  197. <para>used to query and change the system hostname and related
  198. settings.</para>
  199. <indexterm zone="ch-system-systemd hostnamectl">
  200. <primary sortas="b-hostnamectl">hostnamectl</primary>
  201. </indexterm>
  202. </listitem>
  203. </varlistentry>
  204. <varlistentry id="init">
  205. <term><command>init</command></term>
  206. <listitem>
  207. <para>The first process to be started when the kernel has initialized
  208. the hardware which takes over the boot process and starts all the
  209. proceses it is instructed to.</para>
  210. <indexterm zone="ch-system-systemd init">
  211. <primary sortas="b-init">init</primary>
  212. </indexterm>
  213. </listitem>
  214. </varlistentry>
  215. <varlistentry id="journalctl">
  216. <term><command>journalctl</command></term>
  217. <listitem>
  218. <para>used to query the contents of the Systemd Journal.</para>
  219. <indexterm zone="ch-system-systemd journalctl">
  220. <primary sortas="b-journalctl">journalctl</primary>
  221. </indexterm>
  222. </listitem>
  223. </varlistentry>
  224. <varlistentry id="kernel-install">
  225. <term><command>kernel-install</command></term>
  226. <listitem>
  227. <para>used to add and remove kernel and initramfs images to and
  228. from /boot.</para>
  229. <indexterm zone="ch-system-systemd kernel-install">
  230. <primary sortas="b-kernel-install">kernel-install</primary>
  231. </indexterm>
  232. </listitem>
  233. </varlistentry>
  234. <varlistentry id="localectl">
  235. <term><command>localectl</command></term>
  236. <listitem>
  237. <para>used to query and change the system locale and keyboard layout
  238. settings.</para>
  239. <indexterm zone="ch-system-systemd localectl">
  240. <primary sortas="b-localectl">localectl</primary>
  241. </indexterm>
  242. </listitem>
  243. </varlistentry>
  244. <varlistentry id="loginctl">
  245. <term><command>loginctl</command></term>
  246. <listitem>
  247. <para>used to introspect and control the state of the Systemd Login
  248. Manager.</para>
  249. <indexterm zone="ch-system-systemd loginctl">
  250. <primary sortas="b-loginctl">loginctl</primary>
  251. </indexterm>
  252. </listitem>
  253. </varlistentry>
  254. <varlistentry id="machinectl">
  255. <term><command>machinectl</command></term>
  256. <listitem>
  257. <para>used to introspect and control the state of the Systemd Virtual
  258. Machine and Container Registration Manager</para>
  259. <indexterm zone="ch-system-systemd machinectl">
  260. <primary sortas="b-machinectl">machinectl</primary>
  261. </indexterm>
  262. </listitem>
  263. </varlistentry>
  264. <varlistentry id="poweroff">
  265. <term><command>poweroff</command></term>
  266. <listitem>
  267. <para>Tells the kernel to halt the system and switch off the computer
  268. (see <command>halt</command>).</para>
  269. <indexterm zone="ch-system-systemd poweroff">
  270. <primary sortas="b-poweroff">poweroff</primary>
  271. </indexterm>
  272. </listitem>
  273. </varlistentry>
  274. <varlistentry id="reboot">
  275. <term><command>reboot</command></term>
  276. <listitem>
  277. <para>Tells the kernel to reboot the system (see
  278. <command>halt</command>).</para>
  279. <indexterm zone="ch-system-systemd reboot">
  280. <primary sortas="b-reboot">reboot</primary>
  281. </indexterm>
  282. </listitem>
  283. </varlistentry>
  284. <varlistentry id="runlevel">
  285. <term><command>runlevel</command></term>
  286. <listitem>
  287. <para>Reports the previous and the current run-level, as noted in the
  288. last run-level record in <filename>/var/run/utmp</filename>.</para>
  289. <indexterm zone="ch-system-systemd runlevel">
  290. <primary sortas="b-runlevel">runlevel</primary>
  291. </indexterm>
  292. </listitem>
  293. </varlistentry>
  294. <varlistentry id="shutdown">
  295. <term><command>shutdown</command></term>
  296. <listitem>
  297. <para>Brings the system down in a secure way, signaling all processes
  298. and notifying all logged-in users.</para>
  299. <indexterm zone="ch-system-systemd shutdown">
  300. <primary sortas="b-shutdown">shutdown</primary>
  301. </indexterm>
  302. </listitem>
  303. </varlistentry>
  304. <varlistentry id="systemctl">
  305. <term><command>systemctl</command></term>
  306. <listitem>
  307. <para>used to introspect and control the state of the Systemd system and
  308. service manager.</para>
  309. <indexterm zone="ch-system-systemd systemctl">
  310. <primary sortas="b-systemctl">systemctl</primary>
  311. </indexterm>
  312. </listitem>
  313. </varlistentry>
  314. <varlistentry id="systemd-analyze">
  315. <term><command>systemd-analyze</command></term>
  316. <listitem>
  317. <para>used to determine system boot-up performance of the current boot.
  318. </para>
  319. <indexterm zone="ch-system-systemd systemd-analyze">
  320. <primary sortas="b-systemd-analyze">systemd-analyze</primary>
  321. </indexterm>
  322. </listitem>
  323. </varlistentry>
  324. <varlistentry id="systemd-ask-password">
  325. <term><command>systemd-ask-password</command></term>
  326. <listitem>
  327. <para>used to query a system password or passphrase from the user, using a
  328. question message specified on the command line.</para>
  329. <indexterm zone="ch-system-systemd systemd-ask-password">
  330. <primary sortas="b-systemd-ask-password">systemd-ask-password</primary>
  331. </indexterm>
  332. </listitem>
  333. </varlistentry>
  334. <varlistentry id="systemd-cat">
  335. <term><command>systemd-cat</command></term>
  336. <listitem>
  337. <para>used to connect STDOUT and STDERR of a process with the Journal.
  338. </para>
  339. <indexterm zone="ch-system-systemd systemd-cat">
  340. <primary sortas="b-systemd-cat">systemd-cat</primary>
  341. </indexterm>
  342. </listitem>
  343. </varlistentry>
  344. <varlistentry id="systemd-cgls">
  345. <term><command>systemd-cgls</command></term>
  346. <listitem>
  347. <para>recursively shows the contents of the selected Linux control group
  348. hierarchy in a tree.</para>
  349. <indexterm zone="ch-system-systemd systemd-cgls">
  350. <primary sortas="b-systemd-cgls">systemd-cgls</primary>
  351. </indexterm>
  352. </listitem>
  353. </varlistentry>
  354. <varlistentry id="systemd-cgtop">
  355. <term><command>systemd-cgtop</command></term>
  356. <listitem>
  357. <para>shows the top control groups of the local Linux control group hierarchy,
  358. ordered by their CPU, memory and disk I/O load.</para>
  359. <indexterm zone="ch-system-systemd systemd-cgtop">
  360. <primary sortas="b-systemd-cgtop">systemd-cgtop</primary>
  361. </indexterm>
  362. </listitem>
  363. </varlistentry>
  364. <varlistentry id="systemd-coredumpctl">
  365. <term><command>systemd-coredumpctl</command></term>
  366. <listitem>
  367. <para>used to retrieve coredumps from the Systemd Journal</para>
  368. <indexterm zone="ch-system-systemd systemd-coredumpctl">
  369. <primary sortas="b-systemd-coredumpctl">systemd-coredumpctl</primary>
  370. </indexterm>
  371. </listitem>
  372. </varlistentry>
  373. <varlistentry id="systemd-delta">
  374. <term><command>systemd-delta</command></term>
  375. <listitem>
  376. <para>used to identify and compare configuration files in
  377. <filename class="directory">/etc</filename> that override default
  378. counterparts in <filename class="directory">/usr</filename>.</para>
  379. <indexterm zone="ch-system-systemd systemd-delta">
  380. <primary sortas="b-systemd-delta">systemd-delta</primary>
  381. </indexterm>
  382. </listitem>
  383. </varlistentry>
  384. <varlistentry id="systemd-detect-virt">
  385. <term><command>systemd-detect-virt</command></term>
  386. <listitem>
  387. <para>detects execution in a virtualized environment.</para>
  388. <indexterm zone="ch-system-systemd systemd-detect-virt">
  389. <primary sortas="b-systemd-detect-virt">systemd-detect-virt</primary>
  390. </indexterm>
  391. </listitem>
  392. </varlistentry>
  393. <varlistentry id="systemd-inhibit">
  394. <term><command>systemd-inhibit</command></term>
  395. <listitem>
  396. <para>used to execute a program with a shutdown, sleep or idle inhibitor lock
  397. taken.</para>
  398. <indexterm zone="ch-system-systemd systemd-inhibit">
  399. <primary sortas="b-systemd-inhibit">systemd-inhibit</primary>
  400. </indexterm>
  401. </listitem>
  402. </varlistentry>
  403. <varlistentry id="systemd-machine-id-setup">
  404. <term><command>systemd-machine-id-setup</command></term>
  405. <listitem>
  406. <para>used by system installer tools to initialize the machine ID stored in
  407. <filename>/etc/machine-id</filename> at install time with a randomly
  408. generated ID.</para>
  409. <indexterm zone="ch-system-systemd systemd-machine-id-setup">
  410. <primary sortas="b-systemd-machine-id-setup">systemd-machine-id-setup</primary>
  411. </indexterm>
  412. </listitem>
  413. </varlistentry>
  414. <varlistentry id="systemd-notify">
  415. <term><command>systemd-notify</command></term>
  416. <listitem>
  417. <para>used by daemon scripts to notify the init system about status changes.
  418. </para>
  419. <indexterm zone="ch-system-systemd systemd-notify">
  420. <primary sortas="b-systemd-notify">systemd-notify</primary>
  421. </indexterm>
  422. </listitem>
  423. </varlistentry>
  424. <varlistentry id="systemd-nspawn">
  425. <term><command>systemd-nspawn</command></term>
  426. <listitem>
  427. <para>used to run a command or OS in a light-weight namespace container.</para>
  428. <indexterm zone="ch-system-systemd systemd-nspawn">
  429. <primary sortas="b-systemd-nspawn">systemd-nspawn</primary>
  430. </indexterm>
  431. </listitem>
  432. </varlistentry>
  433. <varlistentry id="systemd-run">
  434. <term><command>systemd-run</command></term>
  435. <listitem>
  436. <para>used to create and start a transient .service or a .scope unit and
  437. run the specified command in it.</para>
  438. <indexterm zone="ch-system-systemd systemd-run">
  439. <primary sortas="b-systemd-run">systemd-run</primary>
  440. </indexterm>
  441. </listitem>
  442. </varlistentry>
  443. <!-- <varlistentry id="systemd-stdio-bridge">
  444. <term><command>systemd-stdio-bridge</command></term>
  445. <listitem>
  446. <para>To be completed</para>
  447. <indexterm zone="ch-system-systemd systemd-stdio-bridge">
  448. <primary sortas="b-systemd-stdio-bridge">systemd-stdio-bridge</primary>
  449. </indexterm>
  450. </listitem>
  451. </varlistentry> -->
  452. <varlistentry id="systemd-tmpfiles">
  453. <term><command>systemd-tmpfiles</command></term>
  454. <listitem>
  455. <para>creates, deletes and cleans up volatile and temporary files and directories,
  456. based on the configuration file format and location specified in
  457. <filename class="directory">tmpfiles.d</filename> directories.</para>
  458. <indexterm zone="ch-system-systemd systemd-tmpfiles">
  459. <primary sortas="b-systemd-tmpfiles">systemd-tmpfiles</primary>
  460. </indexterm>
  461. </listitem>
  462. </varlistentry>
  463. <varlistentry id="systemd-tty-ask-password-agent">
  464. <term><command>systemd-tty-ask-password-agent</command></term>
  465. <listitem>
  466. <para>used to list or process pending Systemd password requests</para>
  467. <indexterm zone="ch-system-systemd systemd-tty-ask-password-agent">
  468. <primary sortas="b-systemd-tty-ask-password-agent">systemd-tty-ask-password-agent</primary>
  469. </indexterm>
  470. </listitem>
  471. </varlistentry>
  472. <varlistentry id="telinit">
  473. <term><command>telinit</command></term>
  474. <listitem>
  475. <para>Tells <command>init</command> which run-level to change to.</para>
  476. <indexterm zone="ch-system-systemd telinit">
  477. <primary sortas="b-telinit">telinit</primary>
  478. </indexterm>
  479. </listitem>
  480. </varlistentry>
  481. <varlistentry id="timedatectl">
  482. <term><command>timedatectl</command></term>
  483. <listitem>
  484. <para>used to query and change the system clock and its settings.
  485. </para>
  486. <indexterm zone="ch-system-systemd timedatectl">
  487. <primary sortas="b-timedatectl">timedatectl</primary>
  488. </indexterm>
  489. </listitem>
  490. </varlistentry>
  491. <varlistentry id="udevadm">
  492. <term><command>udevadm</command></term>
  493. <listitem>
  494. <para>Generic Udev administration tool: controls the udevd daemon,
  495. provides info from the Udev database, monitors uevents, waits for
  496. uevents to finish, tests Udev configuration, and triggers uevents
  497. for a given device.</para>
  498. <indexterm zone="ch-system-systemd udevadm">
  499. <primary sortas="b-udevadm">udevadm</primary>
  500. </indexterm>
  501. </listitem>
  502. </varlistentry>
  503. <varlistentry id="libsystemd">
  504. <term><filename class="libraryfile">libsystemd</filename></term>
  505. <listitem>
  506. <para>Systemd utility library.</para>
  507. <indexterm zone="ch-system-systemd libsystemd">
  508. <primary sortas="c-libsystemd">libsystemd</primary>
  509. </indexterm>
  510. </listitem>
  511. </varlistentry>
  512. <varlistentry id="libudev">
  513. <term><filename class="libraryfile">libudev</filename></term>
  514. <listitem>
  515. <para>A library to access Udev device information.</para>
  516. <indexterm zone="ch-system-systemd libudev">
  517. <primary sortas="c-libudev">libudev</primary>
  518. </indexterm>
  519. </listitem>
  520. </varlistentry>
  521. </variablelist>
  522. </sect2>
  523. </sect1>