source: gnome/platform/gdm.xml@ 3dc007fb

11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 3dc007fb was 45ab6c7, checked in by Xi Ruoyao <xry111@…>, 3 years ago

more SVN prop clean up

Remove "$LastChanged$" everywhere, and also some unused $Date$

  • Property mode set to 100644
File size: 10.5 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 gdm-download-http "&gnome-download-http;/gdm/&gnome-40;/gdm-&gdm-version;.tar.xz">
8 <!ENTITY gdm-download-ftp "&gnome-download-ftp;/gdm/&gnome-40;/gdm-&gdm-version;.tar.xz">
9 <!ENTITY gdm-md5sum "85e6a306f1d0c88c276938a0519d8332">
10 <!ENTITY gdm-size "784 KB">
11 <!ENTITY gdm-buildsize "35 MB">
12 <!ENTITY gdm-time "0.1 SBU">
13]>
14
15<sect1 id="gdm" xreflabel="GDM-&gdm-version;">
16 <?dbhtml filename="gdm.html"?>
17
18 <sect1info>
19 <date>$Date$</date>
20 </sect1info>
21
22 <title>GDM-&gdm-version;</title>
23
24 <indexterm zone="gdm">
25 <primary sortas="a-GDM">GDM</primary>
26 </indexterm>
27
28 <sect2 role="package">
29 <title>Introduction to GDM</title>
30
31 <para>
32 <application>GDM</application> is a system service that is
33 responsible for providing graphical logins and managing local
34 and remote displays.
35 </para>
36
37 &lfs101_checked;
38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>
43 Download (HTTP): <ulink url="&gdm-download-http;"/>
44 </para>
45 </listitem>
46 <listitem>
47 <para>
48 Download (FTP): <ulink url="&gdm-download-ftp;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download MD5 sum: &gdm-md5sum;
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download size: &gdm-size;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Estimated disk space required: &gdm-buildsize;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated build time: &gdm-time;
69 </para>
70 </listitem>
71 </itemizedlist>
72 <!--
73 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
74 <itemizedlist spacing="compact">
75 <listitem>
76 <para>
77 Required patch:
78 <ulink url="&patch-root;/gdm-&gdm-version;-security_fix-1.patch"/>
79 </para>
80 </listitem>
81 </itemizedlist>
82 -->
83 <bridgehead renderas="sect3">GDM Dependencies</bridgehead>
84
85 <bridgehead renderas="sect4">Required</bridgehead>
86 <para role="required">
87 <xref linkend="accountsservice"/>,
88 <xref linkend="gtk3"/>,
89 <xref linkend="iso-codes"/>,
90 <xref linkend="itstool"/>,
91 <xref linkend="libcanberra"/>,
92 <xref linkend="libdaemon"/>, and
93 <xref linkend="linux-pam"/>
94 </para>
95
96 <bridgehead renderas="sect4">Optional</bridgehead>
97 <para role="optional">
98 <xref linkend="keyutils"/>
99 </para>
100
101 <bridgehead renderas="sect4">Runtime Dependencies</bridgehead>
102 <para role="required">
103 <xref role="runtime" linkend="gnome-session"/>,
104 <xref role="runtime" linkend="gnome-shell"/>, and
105 <phrase revision="sysv"><xref role="runtime" linkend="elogind"/></phrase>
106 <phrase revision="systemd"><xref role="runtime" linkend="systemd"/></phrase>
107 </para>
108
109 <para condition="html" role="usernotes">User Notes:
110 <ulink url="&blfs-wiki;/gdm"/>
111 </para>
112 </sect2>
113
114 <sect2 role="installation">
115 <title>Installation of GDM</title>
116
117 <para>
118 It is recommended to have a dedicated user and group to take
119 control of the <command>gdm</command> daemon after it is
120 started. Issue the following commands as the
121 <systemitem class="username">root</systemitem> user:
122 </para>
123
124<screen role="root"><userinput>groupadd -g 21 gdm &amp;&amp;
125useradd -c "GDM Daemon Owner" -d /var/lib/gdm -u 21 \
126 -g gdm -s /bin/false gdm &amp;&amp;
127passwd -ql gdm</userinput></screen>
128
129 <para revision="sysv">
130 First, adapt GDM to build without systemd present:
131 </para>
132
133<screen revision="sysv"><userinput remap="pre">sed -i -r '/(^| )systemd_dep/d' meson.build</userinput></screen>
134
135 <para>
136 Install <application>GDM</application> by running the following
137 commands:
138 </para>
139
140<screen revision="sysv"><userinput>sed 's@systemd@elogind@' -i data/pam-lfs/gdm-launch-environment.pam &amp;&amp;
141
142mkdir build &amp;&amp;
143cd build &amp;&amp;
144
145meson --prefix=/usr \
146 -Dplymouth=disabled \
147 -Dgdm-xsession=true \
148 -Dpam-mod-dir=/lib/security \
149 -Dsystemd-journal=false \
150 -Dsystemdsystemunitdir=/tmp \
151 -Dsystemduserunitdir=/tmp .. &amp;&amp;
152ninja</userinput></screen>
153
154<screen revision="systemd"><userinput>mkdir build &amp;&amp;
155cd build &amp;&amp;
156
157meson --prefix=/usr \
158 -Dplymouth=disabled \
159 -Dgdm-xsession=true \
160 -Dpam-mod-dir=/lib/security .. &amp;&amp;
161ninja</userinput></screen>
162
163 <para>
164 This package does not come with a usable test suite.
165 </para>
166
167 <para>
168 Now, as the <systemitem class="username">root</systemitem> user:
169 </para>
170
171<screen role="root" revision="sysv"><userinput>ninja install &amp;&amp;
172rm -rv /tmp/*.{service,target.d}</userinput></screen>
173
174<screen role="root" revision="systemd"><userinput>ninja install</userinput></screen>
175
176 </sect2>
177
178 <sect2 role="commands">
179 <title>Command Explanations</title>
180
181 <para>
182 <option>-Dinitial-vt=7</option>: Use this switch
183 to make <application>GDM</application> start on VT7
184 instead of the first free VT.
185 </para>
186
187 <para>
188 <parameter>-Dplymouth=disabled</parameter>: GDM now explicitly requires
189 plymouth to be installed. Use this switch to disable this dependency.
190 </para>
191
192 <para>
193 <option>-Ddefault-pam-config=lfs</option>: Use this
194 switch if you did not create the
195 <filename>/etc/lfs-release</filename> file or distribution
196 auto detection will fail and you will be unable to use
197 <application>GDM</application>.
198 </para>
199
200 <para>
201 <parameter>-Dgdm-xsession=true</parameter>: This enables the
202 installation of the <application>GDM</application> Xsession file.
203 </para>
204
205 </sect2>
206
207 <sect2 role="configuration">
208 <title>Configuring GDM</title>
209
210 <sect3 id="gdm-config">
211 <title>Config Files</title>
212
213 <para>
214 <filename>/etc/gdm/custom.conf</filename>
215 </para>
216
217 <indexterm zone="gdm gdm-config">
218 <primary sortas="e-etc-gdm-custom.conf">/etc/gdm/custom.conf</primary>
219 </indexterm>
220
221 </sect3>
222
223 <sect3>
224 <title>Configuration Information</title>
225
226 <para>
227 The GDM daemon is configured using the
228 <filename>/etc/gdm/custom.conf</filename> file. Default values
229 are stored in GSettings in the <filename>gdm.schemas</filename>
230 file. It is recommended that end-users modify the
231 <filename>/etc/gdm/custom.conf</filename> file because the schemas
232 file may be overwritten when the user updates their system to have
233 a newer version of <application>GDM</application>.
234 </para>
235
236 </sect3>
237
238 <sect3 id="gdm-init">
239 <title><phrase revision="sysv">Boot Script</phrase>
240 <phrase revision="systemd">Systemd Unit</phrase></title>
241
242 <indexterm zone="gdm gdm-init">
243 <primary sortas="f-gdm">gdm</primary>
244 </indexterm>
245
246 <para revision="sysv">
247 To start <command>gdm</command> automatically when the system is
248 switched to runlevel 5, install the
249 <filename>/etc/rc.d/init.d/xdm</filename> script and the
250 <filename>/etc/sysconfig/xdm</filename> configuration file
251 included in the <xref linkend="bootscripts"/> package
252 and adjust <filename>/etc/inittab</filename> by running
253 as the <systemitem class="username">root</systemitem> user:
254 </para>
255
256<screen role="root" revision="sysv"><userinput>make install-gdm</userinput></screen>
257
258 <para revision="sysv">
259 In order to permanently set the default runlevel to 5, starting the
260 <command>gdm</command> greeter screen automatically, you can modify
261 <filename>/etc/inittab</filename>. As the <systemitem
262 class="username">root</systemitem> user:
263 </para>
264
265<screen role="root" revision="sysv"><userinput>sed /initdefault/s/3/5/ -i /etc/inittab</userinput></screen>
266
267 <para revision="systemd">
268 To start the <command>gdm</command> daemon at boot, enable
269 the previously installed systemd unit by running the following command
270 as the <systemitem class="username">root</systemitem> user:
271 </para>
272
273<screen role="root" revision="systemd"><userinput>systemctl enable gdm</userinput></screen>
274
275<!-- [pierre October 2020] I don't understand why this is here: power
276 management works perfectly well
277 <para revision="sysv">
278 You should also disable default elogind power management:
279 </para>
280
281<screen role="root" revision="sysv"><userinput>cat &gt;&gt; /etc/elogind/logind.conf &lt;&lt; "EOF"
282<literal>AllowSuspend=no
283AllowHibernation=no</literal>
284EOF</userinput></screen>
285-->
286
287 </sect3>
288
289 </sect2>
290
291 <sect2 role="content">
292 <title>Contents</title>
293
294 <segmentedlist>
295 <segtitle>Installed Programs</segtitle>
296 <segtitle>Installed Libraries</segtitle>
297 <segtitle>Installed Directories</segtitle>
298
299 <seglistitem>
300 <seg>
301 gdm, gdmflexiserver, and gdm-screenshot
302 </seg>
303 <seg>
304 libgdm.so and pam_gdm.so (PAM Module)
305 </seg>
306 <seg>
307 /etc/gdm,
308 /usr/include/gdm,
309 /usr/share/gdm,
310 /usr/share/help/*/gdm,
311 /var/cache/gdm,
312 /var/lib/gdm,
313 /var/log/gdm, and
314 /var/run/gdm
315 </seg>
316 </seglistitem>
317 </segmentedlist>
318
319 <variablelist>
320 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
321 <?dbfo list-presentation="list"?>
322 <?dbhtml list-presentation="table"?>
323
324 <varlistentry id="gdm-prog">
325 <term><command>gdm</command></term>
326 <listitem>
327 <para>
328 is a login prompt for <application>GNOME</application>
329 </para>
330 <indexterm zone="gdm gdm-prog">
331 <primary sortas="b-gdm">gdm</primary>
332 </indexterm>
333 </listitem>
334 </varlistentry>
335
336 <varlistentry id="gdm-screenshot">
337 <term><command>gdm-screenshot</command></term>
338 <listitem>
339 <para>
340 is a screenshot tool for <application>GDM</application>
341 </para>
342 <indexterm zone="gdm gdm-screenshot">
343 <primary sortas="b-gdm-screenshot">gdm-screenshot</primary>
344 </indexterm>
345 </listitem>
346 </varlistentry>
347
348 </variablelist>
349
350 </sect2>
351
352</sect1>
Note: See TracBrowser for help on using the repository browser.