systemd.xml 23 KB

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