source: general/sysutils/accountsservice.xml@ 0dfefe1

elogind
Last change on this file since 0dfefe1 was 0dfefe1, checked in by DJ Lucas <dj@…>, 5 years ago

Restore Gnome section for SysV book.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/BOOK-elogind@21129 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 6.8 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 accountsservice-download-http
8 "https://www.freedesktop.org/software/accountsservice/accountsservice-&accountsservice-version;.tar.xz">
9 <!ENTITY accountsservice-download-ftp " ">
10 <!ENTITY accountsservice-md5sum "6420f2e619ddcf92230d8f10bad049fe">
11 <!ENTITY accountsservice-size "92 KB">
12 <!ENTITY accountsservice-buildsize "9.1 MB">
13 <!ENTITY accountsservice-time "0.1 SBU">
14]>
15
16<sect1 id="accountsservice" xreflabel="AccountsService-&accountsservice-version;">
17 <?dbhtml filename="accountsservice.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>AccountsService-&accountsservice-version;</title>
25
26 <indexterm zone="accountsservice">
27 <primary sortas="a-AccountsService">AccountsService</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to AccountsService</title>
32
33 <para>
34 The <application>AccountsService</application> package provides a
35 set of <application>D-Bus</application> interfaces for querying
36 and manipulating user account information and an implementation
37 of those interfaces based on the usermod(8), useradd(8) and
38 userdel(8) commands.
39 </para>
40
41 &lfs83_checked;
42
43 <bridgehead renderas="sect3">Package Information</bridgehead>
44 <itemizedlist spacing="compact">
45 <listitem>
46 <para>
47 Download (HTTP): <ulink url="&accountsservice-download-http;"/>
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download (FTP): <ulink url="&accountsservice-download-ftp;"/>
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Download MD5 sum: &accountsservice-md5sum;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Download size: &accountsservice-size;
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Estimated disk space required: &accountsservice-buildsize;
68 </para>
69 </listitem>
70 <listitem>
71 <para>
72 Estimated build time: &accountsservice-time;
73 </para>
74 </listitem>
75 </itemizedlist>
76
77 <bridgehead renderas="sect3">AccountsService Dependencies</bridgehead>
78
79 <bridgehead renderas="sect4">Required</bridgehead>
80 <para role="required">
81 <xref linkend="libgcrypt"/> and
82 <xref linkend="polkit"/>
83 </para>
84
85 <bridgehead renderas="sect4">Recommended</bridgehead>
86 <para role="recommended">
87 <xref linkend="gobject-introspection"/> and
88 <phrase revision="sysv"><xref linkend="elogind"/></phrase>
89 <phrase revision="systemd"><xref linkend="systemd"/></phrase>
90 </para>
91
92 <bridgehead renderas="sect4">Optional</bridgehead>
93 <para role="optional">
94 <xref linkend="gtk-doc"/> and
95 <xref linkend="xmlto"/>
96 <!-- I did not have gtk-doc installed this time, and it worked fine. -->
97 </para>
98
99 <para condition="html" role="usernotes">User Notes:
100 <ulink url="&blfs-wiki;/accountsservice"/>
101 </para>
102 </sect2>
103
104 <sect2 role="installation">
105 <title>Installation of AccountsService</title>
106
107 <para>
108 Install <application>AccountsService</application> by running the following
109 commands:
110 </para>
111
112<screen><userinput>mkdir build &amp;&amp;
113cd build &amp;&amp;
114
115meson --prefix=/usr \
116 -Dadmin_group=adm \
117 -Dsystemd=true \
118 .. &amp;&amp;
119ninja</userinput></screen>
120
121 <para>
122 This package does not come with a test suite.
123 </para>
124
125 <para>
126 Now, as the <systemitem class="username">root</systemitem> user:
127 </para>
128
129<screen role="root"><userinput>ninja install</userinput></screen>
130
131 </sect2>
132
133 <sect2 role="commands">
134 <title>Command Explanations</title>
135
136 <para>
137 <parameter>-Dadmin_group=adm</parameter>: This switch sets
138 the group for administrator accounts.
139 </para>
140
141 <para>
142 <option>-Ddocbook=true</option>: This switch enables building
143 the D-Bus interface API documentation.
144 </para>
145<!--
146 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
147 href="../../xincludes/static-libraries.xml"/>
148
149 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
150 href="../../xincludes/gtk-doc-rebuild.xml"/>
151-->
152 </sect2>
153
154 <sect2 role="configuration">
155 <title>Configuring AccountsService</title>
156
157 <sect3 id="accountsservice-init">
158 <title>Systemd Units</title>
159
160 <para>
161 To start the <command>accounts-daemon</command> daemon at boot,
162 enable the previously installed systemd unit by
163 running the following command as the
164 <systemitem class="username">root</systemitem> user:
165 </para>
166
167 <indexterm zone="accountsservice accountsservice-init">
168 <primary sortas="f-accounts-daemon">accounts-daemon</primary>
169 </indexterm>
170
171<screen role="root"><userinput>systemctl enable accounts-daemon</userinput></screen>
172
173 </sect3>
174
175 </sect2>
176
177 <sect2 role="content">
178 <title>Contents</title>
179
180 <segmentedlist>
181 <segtitle>Installed Programs</segtitle>
182 <segtitle>Installed Libraries</segtitle>
183 <segtitle>Installed Directories</segtitle>
184
185 <seglistitem>
186 <seg>
187 accounts-daemon (library executable)
188 </seg>
189 <seg>
190 libaccountsservice.so
191 </seg>
192 <seg>
193 /usr/include/accountsservice-1.0,
194 /usr/share/doc/accountsservice,
195 /usr/share/gtk-doc/html/libaccountsservice, and
196 /var/lib/AccountsService
197 </seg>
198 </seglistitem>
199 </segmentedlist>
200
201 <variablelist>
202 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
203 <?dbfo list-presentation="list"?>
204 <?dbhtml list-presentation="table"?>
205
206 <varlistentry id="accounts-daemon">
207 <term><command>accounts-daemon</command></term>
208 <listitem>
209 <para>
210 is the <application>AccountsService</application> daemon.
211 </para>
212 <indexterm zone="accountsservice accounts-daemon">
213 <primary sortas="b-accounts-daemon">accounts-daemon</primary>
214 </indexterm>
215 </listitem>
216 </varlistentry>
217
218 <varlistentry id="libaccountsservice">
219 <term><filename class="libraryfile">libaccountsservice.so</filename></term>
220 <listitem>
221 <para>
222 contains the <application>AccountsService</application> API functions.
223 </para>
224 <indexterm zone="accountsservice libaccountsservice">
225 <primary sortas="c-libaccountsservice">libaccountsservice.so</primary>
226 </indexterm>
227 </listitem>
228 </varlistentry>
229
230 </variablelist>
231
232 </sect2>
233
234</sect1>
Note: See TracBrowser for help on using the repository browser.