dbus.xml 8.6 KB

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