systemd.xml 23 KB

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