systemd.xml 23 KB

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