source: general/sysutils/dbus.xml@ 9448f79b

12.1 ken/TL2024 ken/tuningfonts lazarus plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18
Last change on this file since 9448f79b was 128bc41c, checked in by Bruce Dubbs <bdubbs@…>, 9 months ago

Update to dbus-1.14.10.

  • Property mode set to 100644
File size: 26.1 KB
Line 
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 <!ENTITY dbus-download-http "https://dbus.freedesktop.org/releases/dbus/dbus-&dbus-version;.tar.xz">
8 <!ENTITY dbus-download-ftp " ">
9 <!ENTITY dbus-md5sum "46070a3487817ff690981f8cd2ba9376">
10 <!ENTITY dbus-size "1.3 MB">
11 <!ENTITY dbus-buildsize "23 MB (add 25 MB for tests)">
12 <!ENTITY dbus-time "0.2 SBU (add 1.5 SBU for tests)">
13 <!-- The former value was 0.8 SBU, which was far more sensible. -->
14 <!-- I got 'real 0m14.355s' for make check at -j1; bdubbs dbus-1.14.2 -->
15 <!-- Now 'real 2m51.642ss' for make check at -j1; bdubbs dbus-1.14.6
16# TOTAL: 217
17# PASS: 217
18
19Sane test results for 1.14.8. -bdubbs
20
21For 1.14.10:
22# TOTAL: 219
23# PASS: 218
24# FAIL: 1
25
26not ok 2 test-autolaunch
27 -->
28]>
29
30<sect1 id="dbus" xreflabel="dbus-&dbus-version;">
31 <?dbhtml filename="dbus.html"?>
32
33
34 <title>dbus-&dbus-version;</title>
35
36 <indexterm zone="dbus">
37 <primary sortas="a-D-Bus">D-Bus</primary>
38 </indexterm>
39
40 <sect2 role="package">
41 <title>Introduction to D-Bus</title>
42
43 <para revision="sysv">
44 <application>D-Bus</application> is a message bus system, a simple way
45 for applications to talk to one another.
46 <application>D-Bus</application> supplies both a system daemon (for
47 events such as <quote>new hardware device added</quote> or <quote>printer
48 queue changed</quote>) and a per-user-login-session daemon (for general
49 IPC needs among user applications). Also, the message bus is built on top
50 of a general one-to-one message passing framework, which can be used by
51 any two applications to communicate directly (without going through the
52 message bus daemon).
53 </para>
54
55 <para revision="systemd">
56 Even though <application>D-Bus</application> was built in LFS, there are
57 some features provided by the package that other BLFS packages need, but
58 their dependencies didn't fit into LFS.
59 </para>
60
61 &lfs120_checked;
62
63 <bridgehead renderas="sect3">Package Information</bridgehead>
64 <itemizedlist spacing="compact">
65 <listitem>
66 <para>
67 Download (HTTP): <ulink url="&dbus-download-http;"/>
68 </para>
69 </listitem>
70 <listitem>
71 <para>
72 Download (FTP): <ulink url="&dbus-download-ftp;"/>
73 </para>
74 </listitem>
75 <listitem>
76 <para>
77 Download MD5 sum: &dbus-md5sum;
78 </para>
79 </listitem>
80 <listitem>
81 <para>
82 Download size: &dbus-size;
83 </para>
84 </listitem>
85 <listitem>
86 <para>
87 Estimated disk space required: &dbus-buildsize;
88 </para>
89 </listitem>
90 <listitem>
91 <para>
92 Estimated build time: &dbus-time;
93 </para>
94 </listitem>
95 </itemizedlist>
96
97 <bridgehead renderas="sect3">D-Bus Dependencies</bridgehead>
98
99 <bridgehead renderas="sect4">Recommended</bridgehead>
100 <para role="recommended">
101 <xref linkend="xorg7-lib"/> (for <command>dbus-launch</command> program)
102 <!-- elogind cannot be used by dbus: dbus only uses the systemd service,
103 not the logind one
104 <phrase revision="sysv">and <xref linkend="elogind"/> (These are
105 circular dependencies. First build without them, and then again after
106 both packages are installed.)</phrase>-->
107 </para>
108
109 <bridgehead renderas="sect4">Optional</bridgehead>
110 <para role="optional">
111 <phrase revision="systemd"><xref role="runtime" linkend="systemd"/>
112 (runtime, for registering services launched by D-Bus session daemon as
113 systemd user services);</phrase>
114 For the tests:
115 <xref linkend="dbus-python"/>,
116 <xref linkend="pygobject3"/>,
117 and <xref linkend="valgrind"/>;
118
119 for documentation:
120 <xref linkend="doxygen"/>,
121 <xref linkend="xmlto"/>,
122 <ulink url="https://pypi.python.org/pypi/mallard-ducktype">Ducktype</ulink>,
123 and
124 <ulink url="&gnome-download-http;/yelp-tools/">Yelp Tools</ulink>
125 </para>
126
127 <para condition="html" role="usernotes">Editor Notes:
128 <ulink url="&blfs-wiki;/dbus"/>
129 </para>
130 </sect2>
131
132 <sect2 role="installation">
133 <title>Installation of D-Bus</title>
134 <!--
135 <para revision="sysv">
136 If they do not already exist,
137 as the <systemitem class="username">root</systemitem> user, create a
138 system user and group to handle the system message bus activity:
139 </para>
140
141<screen role="root" revision="sysv"><userinput>groupadd -g 18 messagebus &amp;&amp;
142useradd -c "D-Bus Message Daemon User" -d /var/run/dbus \
143 -u 18 -g messagebus -s /bin/false messagebus</userinput></screen>
144 -->
145
146 <para>
147 Install <application>D-Bus</application> by running the following
148 commands (you may wish to review the output from <command>./configure
149 --help</command> first and add any desired parameters to the
150 <command>configure</command> command shown below):
151 </para>
152
153 <!-- Only usefull for systemd: it installs the services files in the
154 systemd/user
155 - -enable-user-session \ -->
156<screen revision="sysv"><userinput>./configure --prefix=/usr \
157 --sysconfdir=/etc \
158 --localstatedir=/var \
159 --runstatedir=/run \
160 --disable-doxygen-docs \
161 --disable-xml-docs \
162 --disable-static \
163 --with-systemduserunitdir=no \
164 --with-systemdsystemunitdir=no \
165 --docdir=/usr/share/doc/dbus-&dbus-version; \
166 --with-system-socket=/run/dbus/system_bus_socket &amp;&amp;
167make</userinput></screen>
168
169<screen revision="systemd"><userinput>./configure --prefix=/usr \
170 --sysconfdir=/etc \
171 --localstatedir=/var \
172 --runstatedir=/run \
173 --enable-user-session \
174 --disable-doxygen-docs \
175 --disable-xml-docs \
176 --disable-static \
177 --docdir=/usr/share/doc/dbus-&dbus-version; \
178 --with-system-socket=/run/dbus/system_bus_socket &amp;&amp;
179make</userinput></screen>
180
181 <para>
182 See below for test instructions.
183 </para>
184
185<!--
186 <warning revision="systemd">
187 <para>
188 Installing the package will override all files installed by
189 <application>D-Bus</application> in LFS. It is critical that
190 nothing uses <application>D-Bus</application> libraries or
191 programs during the installation. The best way to ensure that these
192 libraries are not being used is to run the installation in rescue mode.
193 To switch to rescue mode, run the following command as the
194 <systemitem class="username">root</systemitem> user (from a TTY):
195 </para>
196
197<screen role="root"><userinput>systemctl start rescue.target</userinput></screen>
198
199 </warning>
200-->
201
202 <para>
203 Now, as the <systemitem class="username">root</systemitem> user:
204 </para>
205
206<screen role="root"><userinput>make install</userinput></screen>
207
208<!-- FIXME: No longer needed with usr merge
209 <para>
210 The shared library needs to be moved to
211 <filename class="directory">/lib</filename>, and as a result the
212 <filename class="extension">.so</filename> file in
213 <filename class="directory">/usr/lib</filename> will need to be
214 recreated. Run the following command as the
215 <systemitem class="username">root</systemitem> user:
216 </para>
217
218<screen role="root"><userinput>mv -v /usr/lib/libdbus-1.so.* /lib &amp;&amp;
219ln -sfv ../../lib/$(readlink /usr/lib/libdbus-1.so) /usr/lib/libdbus-1.so</userinput></screen>
220-->
221
222 <para>
223 If you are using a DESTDIR install,
224 <command>dbus-daemon-launch-helper</command> needs to be fixed
225 afterwards. Issue, as <systemitem class="username">root</systemitem>
226 user:
227 </para>
228
229<screen role="root"><userinput>chown -v root:messagebus /usr/libexec/dbus-daemon-launch-helper &amp;&amp;
230chmod -v 4750 /usr/libexec/dbus-daemon-launch-helper</userinput></screen>
231
232 <para revision="sysv">
233 If you are still building your system in chroot or you did not start the
234 daemon yet, but you want to compile some packages that require
235 <application>D-Bus</application>, generate the
236 <application>D-Bus</application> UUID to avoid warnings when compiling
237 some packages with the following command as the
238 <systemitem class="username">root</systemitem> user:
239 </para>
240
241<screen role="root" revision="sysv"><userinput>dbus-uuidgen --ensure</userinput></screen>
242
243 <para revision="sysv">
244 If using <xref linkend="elogind"/>, create a symlink to the
245 <filename>/var/lib/dbus/machine-id</filename> file:
246 </para>
247
248<screen role="root" revision="sysv"><userinput>ln -sfv /var/lib/dbus/machine-id /etc</userinput></screen>
249
250<!--
251 <para revision="systemd">
252 If not in chroot, at this point, you should reload the systemd daemon,
253 and reenter multi-user mode with the following commands (as the
254 <systemitem class="username">root</systemitem> user):
255 </para>
256
257<screen role="root" revision="systemd"><userinput>systemctl daemon-reload
258systemctl start multi-user.target</userinput></screen>
259-->
260
261 <!-- Without dbus-python and pygobject3, only 39 tests are run and
262 11 out of 39 are skipped. With dbus-python and pygobject3
263 installed, 238 tests are run and 37 out of 238 are skipped. -->
264
265 <para>
266 Many tests are disabled unless both <xref linkend="dbus-python"/>
267 and <xref linkend="pygobject3"/> have been installed. They must be
268 run as an unprivileged user from a local session with bus address.
269 To run the standard tests issue <command>make check</command>.
270 </para>
271
272 <!-- With dbus-python and pygobject3 installed and these additional
273 debug options, 347 tests are run and 21 out of 347 are skipped.
274 Additionally, 217 tests in the "name-test" directory are run
275 and none is skipped. -->
276 <para>
277 If you want to run the unit regression tests, configure requires
278 additional parameters which expose additional functionality in the
279 binaries that are not intended to be used in a production build of
280 <application>D-Bus</application>. If you would like to run the tests,
281 issue the following commands (for the tests, you don't need to build the
282 docs):
283 </para>
284
285<screen remap="test"><userinput>make distclean &amp;&amp;
286PYTHON=python3 ./configure --enable-tests \
287 --enable-asserts \
288 --disable-doxygen-docs \
289 --disable-xml-docs &amp;&amp;
290make &amp;&amp;
291make check</userinput></screen>
292
293 <para>
294 One test, test-autolaunch, is known to fail.
295 There have also been reports that the tests may fail if running inside a
296 Midnight Commander shell. You may get out-of-memory error messages when
297 running the tests. These are normal and can be safely ignored.
298 </para>
299
300 </sect2>
301
302 <sect2 role="commands">
303 <title>Command Explanations</title>
304
305 <para>
306 <parameter>--disable-doxygen-docs</parameter>: This switch disables
307 doxygen documentation build and install, if you have
308 <application>doxygen</application> installed. If
309 <application>doxygen</application> is installed, and you wish to build
310 them, remove this parameter.
311 </para>
312
313 <para>
314 <parameter>--disable-xml-docs</parameter>: This switch disables html
315 documentation build and install, if you have
316 <application>xmlto</application> installed. If
317 <application>xmlto</application> is installed, and you wish to build
318 them, remove this parameter.
319 </para>
320
321 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
322 href="../../xincludes/static-libraries.xml"/>
323
324 <para revision="systemd">
325 <parameter>--enable-user-session</parameter>: This parameter enables
326 per-user DBus sessions with
327 <application>systemd</application>.
328 </para>
329
330 <para revision="sysv">
331 <parameter>--with-systemd{user,system}unitdir=no</parameter>: These
332 switches disable installation of systemd units on elogind based systems.
333 </para>
334
335 <para>
336 <parameter>--with-system-pid-file=/run/dbus/pid</parameter>: This
337 parameter specifies the location of the PID file.
338 </para>
339
340 <para>
341 <parameter>--with-system-socket=/run/dbus/system_bus_socket</parameter>:
342 This parameter specifies the location of the system bus socket.
343 </para>
344
345 <para>
346 <parameter>--enable-tests</parameter>: Builds extra parts of the code to
347 support all tests. Do not use on a production build.
348 </para>
349
350 <para>
351 <option>--enable-embedded-tests</option>: Builds extra parts of the
352 code to support only unit tests. Do not use on a production build.
353 </para>
354
355 <para>
356 <parameter>--enable-asserts</parameter>: Enables debugging code to run
357 assertions for statements normally assumed to be true. This prevents a
358 warning that '<parameter>--enable-tests</parameter>' on its own is only
359 useful for profiling and might not give true results for all tests, but
360 adds its own NOTE that this should not be used in a production build.
361 </para>
362
363 </sect2>
364
365 <sect2 role="configuration">
366 <title>Configuring D-Bus</title>
367
368 <sect3 id="dbus-config">
369 <title>Config Files</title>
370
371 <para>
372 <filename>/etc/dbus-1/session.conf</filename>,
373 <filename>/etc/dbus-1/system.conf</filename> and
374 <filename>/etc/dbus-1/system.d/*</filename>
375 </para>
376
377 <indexterm zone="dbus dbus-config">
378 <primary sortas="e-etc-dbus-1-session.conf">/etc/dbus-1/session.conf</primary>
379 </indexterm>
380
381 <indexterm zone="dbus dbus-config">
382 <primary sortas="e-etc-dbus-1/system.conf">/etc/dbus-1/system.conf</primary>
383 </indexterm>
384
385 <indexterm zone="dbus dbus-config">
386 <primary sortas="e-etc-dbus-1-system.d-star">/etc/dbus-1/system.d/*</primary>
387 </indexterm>
388
389 </sect3>
390
391 <sect3 id="dbus-session-config" xreflabel="D-Bus custom services directory">
392 <title>Configuration Information</title>
393
394 <para>
395 The configuration files listed above should probably not be
396 modified. If changes are required, you should create
397 <filename>/etc/dbus-1/session-local.conf</filename> and/or
398 <filename>/etc/dbus-1/system-local.conf</filename> and make any
399 desired changes to these files.
400 </para>
401
402 <para>
403 If any packages install a
404 <application>D-Bus</application> <filename>.service</filename>
405 file outside of the standard <filename
406 class="directory">/usr/share/dbus-1/services</filename> directory,
407 that directory should be added to the local session configuration.
408 For instance, <filename
409 class="directory">/usr/local/share/dbus-1/services</filename> can
410 be added by performing the following commands as the
411 <systemitem class="username">root</systemitem> user:
412 </para>
413
414<screen role="root"><userinput>cat &gt; /etc/dbus-1/session-local.conf &lt;&lt; "EOF"
415<literal>&lt;!DOCTYPE busconfig PUBLIC
416 "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
417 "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"&gt;
418&lt;busconfig&gt;
419
420 &lt;!-- Search for .service files in /usr/local --&gt;
421 &lt;servicedir&gt;/usr/local/share/dbus-1/services&lt;/servicedir&gt;
422
423&lt;/busconfig&gt;</literal>
424EOF</userinput></screen>
425
426 </sect3>
427
428 <sect3 id="dbus-session">
429 <title>D-Bus Session Daemon</title>
430
431 <para revision="sysv">
432 To automatically start <command>dbus-daemon</command> when the
433 system is rebooted, install the
434 <filename>/etc/rc.d/init.d/dbus</filename> bootscript from the
435 <xref linkend="bootscripts"/> package.
436 </para>
437
438 <indexterm zone="dbus dbus-session" revision="sysv">
439 <primary sortas="f-dbus">dbus</primary>
440 </indexterm>
441
442<screen role="root" revision="sysv"><userinput>make install-dbus</userinput></screen>
443
444 <para revision="sysv">
445 If this is the first time to install
446 <application>D-Bus</application> on the system and you are not
447 operating in a chroot environment, you can immediately start
448 <command>dbus-daemon</command> without rebooting the system:
449 </para>
450
451 <!-- nodump because maybe the user is building in chroot -->
452 <screen role="nodump" revision="sysv"><userinput>/etc/init.d/dbus start</userinput></screen>
453
454 <para revision="sysv">
455 Note that this boot script only starts the system-wide
456 <application>D-Bus</application> daemon. Each user requiring access to
457 <application>D-Bus</application> services will also need to run a
458 session daemon as well. There are many methods you can use to start a
459 session daemon using the <command>dbus-launch</command> command. Review
460 the <command>dbus-launch</command> man page for details about the
461 available parameters and options. Here are some suggestions and
462 examples:
463 </para>
464
465 <para revision="systemd">
466 There are many methods you can use to start a session daemon
467 using the <command>dbus-launch</command> command. Review the
468 <command>dbus-launch</command> man page for details about the
469 available parameters and options. Here are some suggestions and
470 examples:
471 </para>
472
473
474 <itemizedlist spacing="compact">
475 <listitem>
476 <para>
477 Add <command>dbus-launch</command> to the line in the
478 <filename>~/.xinitrc</filename> file that starts your graphical
479 desktop environment.
480 </para>
481 </listitem>
482 <listitem>
483 <para>
484 If you use <command>gdm</command> or some other display manager
485 that calls the <filename>~/.xsession</filename> file, you can add
486 <command>dbus-launch</command> to the line in your
487 <filename>~/.xsession</filename> file that starts your graphical
488 desktop environment. The syntax would be similar to the example in
489 the <filename>~/.xinitrc</filename> file.
490 </para>
491 </listitem>
492 <listitem>
493 <para>
494 The examples shown previously use
495 <command>dbus-launch</command> to specify a program to be run. This
496 has the benefit (when also using the
497 <parameter>--exit-with-x11</parameter> parameter) of stopping the
498 session daemon when the specified program is stopped. You can also
499 start the session daemon in your system or personal startup scripts
500 by adding the following lines:
501 </para>
502
503<screen role="nodump"><userinput><literal># Start the D-Bus session daemon
504eval `dbus-launch`
505export DBUS_SESSION_BUS_ADDRESS</literal></userinput></screen>
506
507 <para>
508 This method will not stop the session daemon when you exit
509 your shell, therefore you should add the following line to your
510 <filename>~/.bash_logout</filename> file:
511 </para>
512
513<screen role="nodump"><userinput><literal># Kill the D-Bus session daemon
514kill $DBUS_SESSION_BUS_PID</literal></userinput></screen>
515 </listitem>
516
517 <!-- KDM is no longer usable, SDDM is it's replacement
518 <listitem>
519 <para>
520 A hint has been written that provides ways to start scripts
521 using the KDM session manager of KDE. The concepts in this hint could
522 possibly be used with other session managers as well. The hint is
523 located at <ulink
524 url="&hints-root;/downloads/files/execute-session-scripts-using-kdm.txt"/>.
525 </para>
526 </listitem>
527 -->
528
529 </itemizedlist>
530
531 </sect3>
532
533 </sect2>
534
535 <sect2 role="content" revision="sysv">
536 <title>Contents</title>
537
538 <segmentedlist>
539 <segtitle>Installed Programs</segtitle>
540 <segtitle>Installed Library</segtitle>
541 <segtitle>Installed Directories</segtitle>
542
543 <seglistitem>
544 <seg>
545 dbus-cleanup-sockets, dbus-daemon, dbus-launch, dbus-monitor,
546 dbus-run-session, dbus-send, dbus-test-tool,
547 dbus-update-activation-environment, and dbus-uuidgen
548 </seg>
549 <seg>
550 libdbus-1.so
551 </seg>
552 <seg>
553 /etc/dbus-1,
554 /usr/{include,lib}/dbus-1.0,
555 /usr/lib/cmake/DBus1,
556 /usr/share/dbus-1,
557 /usr/share/xml/dbus-1,
558 /usr/share/doc/dbus-&dbus-version;, and
559 /var/{lib,run}/dbus
560 </seg>
561 </seglistitem>
562 </segmentedlist>
563
564 <variablelist>
565 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
566 <?dbfo list-presentation="list"?>
567 <?dbhtml list-presentation="table"?>
568
569 <varlistentry id="dbus-cleanup-sockets">
570 <term><command>dbus-cleanup-sockets</command></term>
571 <listitem>
572 <para>
573 is used to clean up leftover sockets in a directory
574 </para>
575 <indexterm zone="dbus dbus-cleanup-sockets">
576 <primary sortas="b-dbus-cleanup-sockets">dbus-cleanup-sockets</primary>
577 </indexterm>
578 </listitem>
579 </varlistentry>
580
581 <varlistentry id="dbus-daemon">
582 <term><command>dbus-daemon</command></term>
583 <listitem>
584 <para>
585 is the <application>D-Bus</application> message bus daemon
586 </para>
587 <indexterm zone="dbus dbus-daemon">
588 <primary sortas="b-dbus-daemon">dbus-daemon</primary>
589 </indexterm>
590 </listitem>
591 </varlistentry>
592
593 <varlistentry id="dbus-launch">
594 <term><command>dbus-launch</command></term>
595 <listitem>
596 <para>
597 is used to start <command>dbus-daemon</command> from a shell
598 script. It would normally be called from a user's login
599 scripts
600 </para>
601 <indexterm zone="dbus dbus-launch">
602 <primary sortas="b-dbus-launch">dbus-launch</primary>
603 </indexterm>
604 </listitem>
605 </varlistentry>
606
607 <varlistentry id="dbus-monitor">
608 <term><command>dbus-monitor</command></term>
609 <listitem>
610 <para>
611 is used to monitor messages going through a
612 <application>D-Bus</application> message bus
613 </para>
614 <indexterm zone="dbus dbus-monitor">
615 <primary sortas="b-dbus-monitor">dbus-monitor</primary>
616 </indexterm>
617 </listitem>
618 </varlistentry>
619
620 <varlistentry id="dbus-run-session">
621 <term><command>dbus-run-session</command></term>
622 <listitem>
623 <para>
624 starts a process as a new <application>D-Bus</application> session
625 </para>
626 <indexterm zone="dbus dbus-run-session">
627 <primary sortas="b-dbus-run-session">dbus-run-session</primary>
628 </indexterm>
629 </listitem>
630 </varlistentry>
631
632 <varlistentry id="dbus-send">
633 <term><command>dbus-send</command></term>
634 <listitem>
635 <para>
636 is used to send a message to a <application>D-Bus</application>
637 message bus
638 </para>
639 <indexterm zone="dbus dbus-send">
640 <primary sortas="b-dbus-send">dbus-send</primary>
641 </indexterm>
642 </listitem>
643 </varlistentry>
644
645 <varlistentry id="dbus-test-tool">
646 <term><command>dbus-test-tool</command></term>
647 <listitem>
648 <para>
649 is a <application>D-Bus</application> traffic generator and test
650 tool; it is a multi-purpose tool for debugging and profiling
651 <application>D-Bus</application>
652 </para>
653 <indexterm zone="dbus dbus-test-tool">
654 <primary sortas="b-dbus-test-tool">dbus-test-tool</primary>
655 </indexterm>
656 </listitem>
657 </varlistentry>
658
659 <varlistentry id="dbus-update-activation-environment">
660 <term><command>dbus-update-activation-environment</command></term>
661 <listitem>
662 <para>
663 is used to update the environment used for
664 <application>D-Bus</application> session services;
665 it updates the list of environment variables used by
666 <command>dbus-daemon --session</command> when it activates session
667 services without using systemd
668 </para>
669 <indexterm zone="dbus dbus-update-activation-environment">
670 <primary sortas="b-dbus-update-activation-environment">
671 dbus-update-activation-environment</primary>
672 </indexterm>
673 </listitem>
674 </varlistentry>
675
676 <varlistentry id="dbus-uuidgen">
677 <term><command>dbus-uuidgen</command></term>
678 <listitem>
679 <para>
680 is used to generate a universally unique ID
681 </para>
682 <indexterm zone="dbus dbus-uuidgen">
683 <primary sortas="b-dbus-uuidgen">dbus-uuidgen</primary>
684 </indexterm>
685 </listitem>
686 </varlistentry>
687
688 <varlistentry id="libdbus-1">
689 <term><filename class="libraryfile">libdbus-1.so</filename></term>
690 <listitem>
691 <para>
692 contains the API functions used by the
693 <application>D-Bus</application> message daemon.
694 <application>D-Bus</application> is first a library that provides
695 one-to-one communication between any two applications;
696 <command>dbus-daemon</command> is an application that uses this
697 library to implement a message bus daemon
698 </para>
699 <indexterm zone="dbus libdbus-1">
700 <primary sortas="c-libdbus-1">libdbus-1.so</primary>
701 </indexterm>
702 </listitem>
703 </varlistentry>
704
705 </variablelist>
706
707 </sect2>
708
709 <sect2 role="content" revision="systemd">
710 <title>Contents</title>
711
712 <para>
713 A list of the installed files, along with their short
714 descriptions can be found at
715 <ulink url="&lfs-root;/chapter08/dbus.html#contents-dbus"/>.
716 </para>
717
718 </sect2>
719
720</sect1>
Note: See TracBrowser for help on using the repository browser.