source: gnome/platform/gdm.xml@ 95965b6

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.4 9.0 9.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 95965b6 was 34fe1f4d, checked in by Douglas R. Reno <renodr@…>, 5 years ago

Update to mutter-3.30.2
Update to libsass-3.5.5
Update to gnome-shell-3.30.2
Update to gnome-shell-extensions-3.30.1
Update to gdm-3.30.2
Update to gnome-user-docs-3.30.2
Update to yelp-3.30.0
Update to gnome-terminal-3.30.2
Update to gnome-tweaks-3.30.2

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

  • Property mode set to 100644
File size: 8.3 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-minor-30;/gdm-&gdm-version;.tar.xz">
8 <!ENTITY gdm-download-ftp "&gnome-download-ftp;/gdm/&gnome-minor-30;/gdm-&gdm-version;.tar.xz">
9 <!ENTITY gdm-md5sum "88ff692eabb779cd53246d559e767ad9">
10 <!ENTITY gdm-size "1.2 MB">
11 <!ENTITY gdm-buildsize "42 MB">
12 <!ENTITY gdm-time "0.3 SBU">
13]>
14
15<sect1 id="gdm" xreflabel="GDM-&gdm-version;" revision="systemd">
16 <?dbhtml filename="gdm.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>GDM-&gdm-version;</title>
24
25 <indexterm zone="gdm">
26 <primary sortas="a-GDM">GDM</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to GDM</title>
31
32 <para>
33 <application>GDM</application> is a system service that is
34 responsible for providing graphical logins and managing local
35 and remote displays.
36 </para>
37
38 &lfs83_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>
44 Download (HTTP): <ulink url="&gdm-download-http;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download (FTP): <ulink url="&gdm-download-ftp;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download MD5 sum: &gdm-md5sum;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download size: &gdm-size;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated disk space required: &gdm-buildsize;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated build time: &gdm-time;
70 </para>
71 </listitem>
72 </itemizedlist>
73
74 <bridgehead renderas="sect3">GDM Dependencies</bridgehead>
75
76 <bridgehead renderas="sect4">Required</bridgehead>
77 <para role="required">
78 <xref linkend="accountsservice"/>,
79 <xref linkend="gtk3"/>,
80 <xref linkend="iso-codes"/>,
81 <xref linkend="itstool"/>,
82 <xref linkend="keyutils"/>,
83 <xref linkend="libcanberra"/>,
84 <xref linkend="libdaemon"/>, and
85 <xref linkend="linux-pam"/>
86 </para>
87
88<!-- <bridgehead renderas="sect4">Optional</bridgehead>
89 <para role="optional">
90 <xref linkend="check"/>
91 </para> -->
92
93 <bridgehead renderas="sect4">Runtime Dependencies</bridgehead>
94 <para role="required">
95 <xref role="runtime" linkend="gnome-session"/>,
96 <xref role="runtime" linkend="gnome-shell"/>, and
97 <xref role="runtime" linkend="systemd"/>
98 </para>
99
100 <para condition="html" role="usernotes">User Notes:
101 <ulink url="&blfs-wiki;/gdm"/>
102 </para>
103 </sect2>
104
105 <sect2 role="installation">
106 <title>Installation of GDM</title>
107
108 <para>
109 It is recommended to have a dedicated user and group to take
110 control of the <command>gdm</command> daemon after it is
111 started. Issue the following commands as the
112 <systemitem class="username">root</systemitem> user:
113 </para>
114
115<screen role="root"><userinput>groupadd -g 21 gdm &amp;&amp;
116useradd -c "GDM Daemon Owner" -d /var/lib/gdm -u 21 \
117 -g gdm -s /bin/false gdm &amp;&amp;
118passwd -ql gdm</userinput></screen>
119
120 <para>
121 Install <application>GDM</application> by running the following
122 commands:
123 </para>
124
125<screen><userinput>./configure --prefix=/usr \
126 --sysconfdir=/etc \
127 --localstatedir=/var \
128 --without-plymouth \
129 --disable-static \
130 --enable-gdm-xsession \
131 --with-pam-mod-dir=/lib/security &amp;&amp;
132make</userinput></screen>
133
134<!-- Currently Broken
135 <para>
136 If you have installed <xref linkend="check"/> and you wish to run
137 the testsuite, issue: <command>make check</command>.
138 </para>
139-->
140 <para>
141 This package does not come with a usable test suite.
142 </para>
143
144 <para>
145 Now, as the <systemitem class="username">root</systemitem> user:
146 </para>
147
148<screen role="root"><userinput>make install &amp;&amp;
149install -v -m644 data/gdm.service /lib/systemd/system/gdm.service</userinput></screen>
150
151 </sect2>
152
153 <sect2 role="commands">
154 <title>Command Explanations</title>
155
156 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
157 href="../../xincludes/static-libraries.xml"/>
158
159 <para>
160 <option>--with-initial-vt=7</option>: Use this switch
161 to make <application>GDM</application> start on VT7
162 instead of the first free VT.
163 </para>
164
165 <para>
166 <parameter>--without-plymouth</parameter>: GDM now explicitly requires
167 plymouth to be installed. Use this switch to disable this dependency.
168 </para>
169
170 <para>
171 <option>--with-default-pam-config=lfs</option>: Use this
172 switch if you did not create the
173 <filename>/etc/lfs-release</filename> file or distribution
174 auto detection will fail and you will be unable to use
175 <application>GDM</application>.
176 </para>
177
178 <para>
179 <parameter>--enable-gdm-xsession</parameter>: This enables the
180 installation of the <application>GDM</application> Xsession file.
181 </para>
182
183 </sect2>
184
185 <sect2 role="configuration">
186 <title>Configuring GDM</title>
187
188 <sect3 id="gdm-config">
189 <title>Config Files</title>
190
191 <para>
192 <filename>/etc/gdm/custom.conf</filename>
193 </para>
194
195 <indexterm zone="gdm gdm-config">
196 <primary sortas="e-etc-gdm-custom.conf">/etc/gdm/custom.conf</primary>
197 </indexterm>
198
199 </sect3>
200
201 <sect3>
202 <title>Configuration Information</title>
203
204 <para>
205 The GDM daemon is configured using the
206 <filename>/etc/gdm/custom.conf</filename> file. Default values
207 are stored in GSettings in the <filename>gdm.schemas</filename>
208 file. It is recommended that end-users modify the
209 <filename>/etc/gdm/custom.conf</filename> file because the schemas
210 file may be overwritten when the user updates their system to have
211 a newer version of <application>GDM</application>.
212 </para>
213
214 </sect3>
215
216 <sect3 id="gdm-init">
217 <title>Systemd Units</title>
218
219 <para>
220 To start the <command>gdm</command> daemon at boot, enable
221 the previously installed systemd unit by running the following command
222 as the <systemitem class="username">root</systemitem> user:
223 </para>
224
225 <indexterm zone="gdm gdm-init">
226 <primary sortas="f-gdm">gdm</primary>
227 </indexterm>
228
229<screen role="root"><userinput>systemctl enable gdm</userinput></screen>
230
231 </sect3>
232
233 </sect2>
234
235 <sect2 role="content">
236 <title>Contents</title>
237
238 <segmentedlist>
239 <segtitle>Installed Programs</segtitle>
240 <segtitle>Installed Libraries</segtitle>
241 <segtitle>Installed Directories</segtitle>
242
243 <seglistitem>
244 <seg>
245 gdm, gdmflexiserver, and gdm-screenshot
246 </seg>
247 <seg>
248 libgdm.so and pam_gdm.so (PAM Module)
249 </seg>
250 <seg>
251 /etc/gdm,
252 /usr/include/gdm,
253 /usr/share/gdm,
254 /usr/share/help/*/gdm,
255 /var/cache/gdm,
256 /var/lib/gdm,
257 /var/log/gdm, and
258 /var/run/gdm
259 </seg>
260 </seglistitem>
261 </segmentedlist>
262
263 <variablelist>
264 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
265 <?dbfo list-presentation="list"?>
266 <?dbhtml list-presentation="table"?>
267
268 <varlistentry id="gdm-prog">
269 <term><command>gdm</command></term>
270 <listitem>
271 <para>
272 is a login prompt for <application>GNOME</application>.
273 </para>
274 <indexterm zone="gdm gdm-prog">
275 <primary sortas="b-gdm">gdm</primary>
276 </indexterm>
277 </listitem>
278 </varlistentry>
279
280 <varlistentry id="gdm-screenshot">
281 <term><command>gdm-screenshot</command></term>
282 <listitem>
283 <para>
284 is a screenshot tool for <application>GDM</application>.
285 </para>
286 <indexterm zone="gdm gdm-screenshot">
287 <primary sortas="b-gdm-screenshot">gdm-screenshot</primary>
288 </indexterm>
289 </listitem>
290 </varlistentry>
291
292 </variablelist>
293
294 </sect2>
295
296</sect1>
Note: See TracBrowser for help on using the repository browser.