systemd.xml 23 KB

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