source: chapter08/dbus.xml@ 0ebda11

ml-11.0 multilib
Last change on this file since 0ebda11 was d7a9421, checked in by Douglas R. Reno <renodr@…>, 3 years ago

Merge Xi's changes into trunk
Update to meson-0.58.0
Update to systemd-248
Update to gcc-11.1.0
Update to linux-5.12.1
Update to iproute2-5.12.0
Update to Python-3.9.5
Make /bin, /sbin, and /lib symlinks to their counterparts in /usr.
Thanks again for a significant portion of this work goes to Xi, I only
really merged it and made a couple of modifications for my updates. To
LFS 11.x we go!

  • Property mode set to 100644
File size: 8.6 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
8<sect1 id="ch-system-dbus" role="wrap" revision="systemd">
9 <?dbhtml filename="dbus.html"?>
10
11 <sect1info condition="script">
12 <productname>dbus</productname>
13 <productnumber>&dbus-version;</productnumber>
14 <address>&dbus-url;</address>
15 </sect1info>
16
17 <title>D-Bus-&dbus-version;</title>
18
19 <indexterm zone="ch-system-dbus">
20 <primary sortas="a-dbus">D-Bus</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
25
26 <para>D-Bus is a message bus system, a simple way for applications to talk
27 to one another. D-Bus supplies both a system daemon (for events such as
28 "new hardware device added" or "printer queue changed") and a
29 per-user-login-session daemon (for general IPC needs among user
30 applications). Also, the message bus is built on top of a general one-to-one
31 message passing framework, which can be used by any two applications to
32 communicate directly (without going through the message bus daemon).</para>
33
34 <segmentedlist>
35 <segtitle>&buildtime;</segtitle>
36 <segtitle>&diskspace;</segtitle>
37
38 <seglistitem>
39 <seg>&dbus-fin-sbu;</seg>
40 <seg>&dbus-fin-du;</seg>
41 </seglistitem>
42 </segmentedlist>
43
44 </sect2>
45
46 <sect2 role="installation">
47 <title>Installation of D-Bus</title>
48
49 <para>Prepare D-Bus for compilation:</para>
50
51<screen><userinput remap="configure">./configure --prefix=/usr \
52 --sysconfdir=/etc \
53 --localstatedir=/var \
54 --disable-static \
55 --disable-doxygen-docs \
56 --disable-xml-docs \
57 --docdir=/usr/share/doc/dbus-&dbus-version; \
58 --with-console-auth-dir=/run/console \
59 --with-system-pid-file=/run/dbus/pid \
60 --with-system-socket=/run/dbus/system_bus_socket</userinput></screen>
61
62 <variablelist>
63 <title>The meaning of the configure options:</title>
64
65 <varlistentry>
66 <term><parameter>--with-console-auth-dir=/run/console</parameter></term>
67 <listitem>
68 <para>This specifies the location of the ConsoleKit authorization
69 directory.</para>
70 </listitem>
71 </varlistentry>
72
73 <varlistentry>
74 <term>
75 <parameter>--with-system-pid-file=/run/dbus/pid</parameter> and
76 <parameter>--with-system-socket=/run/dbus/system_bus_socket</parameter>
77 </term>
78 <listitem>
79 <para>These set the location of the PID file and the system bus socket
80 to be in <filename class="directory">/run</filename>, instead of
81 deprecated <filename class="directory">/var/run</filename>.</para>
82 </listitem>
83 </varlistentry>
84
85 </variablelist>
86
87 <para>Compile the package:</para>
88
89<screen><userinput remap="make">make</userinput></screen>
90
91 <para>This package does come with a test suite, but it requires several
92 packages that are not included in LFS. Instructions for running the
93 test suite can be found in the BLFS book at
94 <ulink url="&blfs-book;general/dbus.html"/>.</para>
95
96 <para>Install the package:</para>
97
98<screen><userinput remap="install">make install</userinput></screen>
99
100 <para>Create a symlink so that D-Bus and systemd can use the same
101 <filename>machine-id</filename> file:</para>
102
103<screen><userinput remap="install">ln -sfv /etc/machine-id /var/lib/dbus</userinput></screen>
104
105 </sect2>
106
107 <sect2 id="contents-dbus" role="content">
108 <title>Contents of D-Bus</title>
109
110 <segmentedlist>
111 <segtitle>Installed programs</segtitle>
112 <segtitle>Installed libraries</segtitle>
113 <segtitle>Installed directories</segtitle>
114
115 <seglistitem>
116 <seg>dbus-cleanup-sockets, dbus-daemon, dbus-launch, dbus-monitor,
117 dbus-run-session, dbus-send, dbus-test-tool,
118 dbus-update-activation-environment, and dbus-uuidgen</seg>
119 <seg>libdbus-1.{a,so}</seg>
120 <seg>/etc/dbus-1, /usr/include/dbus-1.0, /usr/lib/dbus-1.0,
121 /usr/share/dbus-1, /usr/share/doc/dbus-&dbus-version;,
122 and /var/lib/dbus</seg>
123 </seglistitem>
124 </segmentedlist>
125
126 <variablelist>
127 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
128 <?dbfo list-presentation="list"?>
129 <?dbhtml list-presentation="table"?>
130
131 <varlistentry id="dbus-cleanup-sockets">
132 <term><command>dbus-cleanup-sockets</command></term>
133 <listitem>
134 <para>is used to remove leftover sockets in a directory</para>
135 <indexterm zone="ch-system-dbus dbus-cleanup-sockets">
136 <primary sortas="b-dbus-cleanup-sockets">dbus-cleanup-sockets</primary>
137 </indexterm>
138 </listitem>
139 </varlistentry>
140
141 <varlistentry id="dbus-daemon">
142 <term><command>dbus-daemon</command></term>
143 <listitem>
144 <para>Is the D-Bus message bus daemon</para>
145 <indexterm zone="ch-system-dbus dbus-daemon">
146 <primary sortas="b-dbus-daemon">dbus-daemon</primary>
147 </indexterm>
148 </listitem>
149 </varlistentry>
150
151 <varlistentry id="dbus-launch">
152 <term><command>dbus-launch</command></term>
153 <listitem>
154 <para>Starts <command>dbus-daemon</command> from a shell
155 script</para>
156 <indexterm zone="ch-system-dbus dbus-launch">
157 <primary sortas="b-dbus-launch">dbus-launch</primary>
158 </indexterm>
159 </listitem>
160 </varlistentry>
161
162 <varlistentry id="dbus-monitor">
163 <term><command>dbus-monitor</command></term>
164 <listitem>
165 <para>Monitors messages passing through a D-Bus message bus</para>
166 <indexterm zone="ch-system-dbus dbus-monitor">
167 <primary sortas="b-dbus-monitor">dbus-monitor</primary>
168 </indexterm>
169 </listitem>
170 </varlistentry>
171
172 <varlistentry id="dbus-run-session">
173 <term><command>dbus-run-session</command></term>
174 <listitem>
175 <para>Starts a session bus instance of <command>dbus-daemon</command>
176 from a shell script and starts a specified program in that
177 session</para>
178 <indexterm zone="ch-system-dbus dbus-run-session">
179 <primary sortas="b-dbus-run-session">dbus-run-session</primary>
180 </indexterm>
181 </listitem>
182 </varlistentry>
183
184 <varlistentry id="dbus-send">
185 <term><command>dbus-send</command></term>
186 <listitem>
187 <para>Sends a message to a D-Bus message bus</para>
188 <indexterm zone="ch-system-dbus dbus-send">
189 <primary sortas="b-dbus-send">dbus-send</primary>
190 </indexterm>
191 </listitem>
192 </varlistentry>
193
194 <varlistentry id="dbus-test-tool">
195 <term><command>dbus-test-tool</command></term>
196 <listitem>
197 <para>Is a tool to help packages test
198 <application>D-Bus</application></para>
199 <indexterm zone="ch-system-dbus dbus-test-tool">
200 <primary sortas="b-dbus-test-tool">dbus-test-tool</primary>
201 </indexterm>
202 </listitem>
203 </varlistentry>
204
205 <!-- This is a very long command name. Excuse the long <primary> statement below. -->
206 <varlistentry id="dbus-update-activation-environment">
207 <term><command>dbus-update-activation-environment</command></term>
208 <listitem>
209 <para>Updates environment variables that will be set for
210 <application>D-Bus</application> session services</para>
211 <indexterm zone="ch-system-dbus dbus-update-activation-environment">
212 <primary sortas="b-dbus-update-activation-environment">dbus-update-activation-environment</primary>
213 </indexterm>
214 </listitem>
215 </varlistentry>
216
217 <varlistentry id="dbus-uuidgen">
218 <term><command>dbus-uuidgen</command></term>
219 <listitem>
220 <para>Generates a universally unique ID</para>
221 <indexterm zone="ch-system-dbus dbus-uuidgen">
222 <primary sortas="b-dbus-uuidgen">dbus-uuidgen</primary>
223 </indexterm>
224 </listitem>
225 </varlistentry>
226
227 <varlistentry id="libdbus-1">
228 <term><filename class="libraryfile">libdbus-1</filename></term>
229 <listitem>
230 <para>Contains API functions used to communicate with the D-Bus
231 message bus</para>
232 <indexterm zone="ch-system-dbus libdbus-1">
233 <primary sortas="c-libdbus-1">libdbus-1</primary>
234 </indexterm>
235 </listitem>
236 </varlistentry>
237
238 </variablelist>
239
240 </sect2>
241
242</sect1>
Note: See TracBrowser for help on using the repository browser.