systemd.xml 23 KB

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