source: gnome/platform/gnome-session.xml@ efbfa24

11.3 12.0 12.1 12.2 gimp3 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/for-12.3 xry111/llvm18 xry111/spidermonkey128 xry111/xf86-video-removal
Last change on this file since efbfa24 was f75264a, checked in by Bruce Dubbs <bdubbs@…>, 19 months ago

Typo

  • Property mode set to 100644
File size: 9.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 gnome-session-download-http
8 "&gnome-download-http;/gnome-session/&gnome-43;/gnome-session-&gnome-session-version;.tar.xz">
9 <!ENTITY gnome-session-download-ftp
10 "&gnome-download-ftp;/gnome-session/&gnome-43;/gnome-session-&gnome-session-version;.tar.xz">
11 <!ENTITY gnome-session-md5sum "02ae90bc41fd06e780169b760fb55670">
12 <!ENTITY gnome-session-size "476 KB">
13 <!ENTITY gnome-session-buildsize "12 MB">
14 <!ENTITY gnome-session-time "0.1 SBU">
15]>
16
17<sect1 id="gnome-session" xreflabel="gnome-session-&gnome-session-version;">
18 <?dbhtml filename="gnome-session.html"?>
19
20
21 <title>gnome-session-&gnome-session-version;</title>
22
23 <indexterm zone="gnome-session">
24 <primary sortas="a-gnome-session">gnome-session</primary>
25 </indexterm>
26
27 <sect2 role="package">
28 <title>Introduction to GNOME Session</title>
29
30 <para>
31 The <application>GNOME Session</application> package contains
32 the <application>GNOME</application> session manager.
33 </para>
34
35 &lfs113_checked;
36
37 <bridgehead renderas="sect3">Package Information</bridgehead>
38 <itemizedlist spacing="compact">
39 <listitem>
40 <para>
41 Download (HTTP): <ulink url="&gnome-session-download-http;"/>
42 </para>
43 </listitem>
44 <listitem>
45 <para>
46 Download (FTP): <ulink url="&gnome-session-download-ftp;"/>
47 </para>
48 </listitem>
49 <listitem>
50 <para>
51 Download MD5 sum: &gnome-session-md5sum;
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download size: &gnome-session-size;
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Estimated disk space required: &gnome-session-buildsize;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Estimated build time: &gnome-session-time;
67 </para>
68 </listitem>
69 </itemizedlist>
70
71 <bridgehead renderas="sect3">GNOME Session Dependencies</bridgehead>
72
73 <bridgehead renderas="sect4">Required</bridgehead>
74 <para role="required">
75 <phrase revision="sysv"><xref role="runtime" linkend="elogind"/>,</phrase>
76 <xref linkend="gnome-desktop"/>,
77 <xref linkend="json-glib"/>,
78 <xref linkend="mesa"/>,
79 <phrase revision="systemd"><xref role="runtime" linkend="systemd"/>,</phrase>
80 and <xref linkend="upower"/>
81 </para>
82
83 <bridgehead renderas="sect4">Optional</bridgehead>
84 <para role="optional">
85 <xref linkend="xmlto"/>, and
86 <xref linkend="libxslt"/> with
87 <xref linkend="DocBook"/> and
88 <xref linkend="docbook-xsl"/> (to build the documentation)
89 </para>
90
91 <para condition="html" role="usernotes">User Notes:
92 <ulink url="&blfs-wiki;/gnome-session"/>
93 </para>
94 </sect2>
95
96 <sect2 role="installation">
97 <title>Installation of GNOME Session</title>
98
99 <para>
100 When running GNOME under <xref linkend="wayland"/>, environment settings
101 are not imported for the user using the system profile. The Wayland
102 developers are currently undecided on a standard method to provide system
103 environment settings for user sessions. To work around this limitation,
104 execute the following command to make
105 <command>gnome-session</command> use a login shell:
106 </para>
107
108<screen><userinput>sed 's@/bin/sh@/bin/sh -l@' -i gnome-session/gnome-session.in</userinput></screen>
109
110
111 <para revision="sysv">
112 Adapt meson.build so that gnome-session can build without systemd:
113 </para>
114
115<screen revision="sysv"><userinput remap="pre">sed -i "/ systemd_dep/,+3d;/if enable_systemd/a \ systemd_userunitdir = '/tmp\'" meson.build</userinput></screen>
116
117 <para>
118 Install <application>GNOME Session</application> by
119 running the following commands:
120 </para>
121
122<screen revision="sysv"><userinput>mkdir build &amp;&amp;
123cd build &amp;&amp;
124
125meson --prefix=/usr \
126 --buildtype=release \
127 -Dsystemd_journal=false \
128 .. &amp;&amp;
129ninja</userinput></screen>
130
131<screen revision="systemd"><userinput>mkdir build &amp;&amp;
132cd build &amp;&amp;
133
134meson --prefix=/usr --buildtype=release .. &amp;&amp;
135ninja</userinput></screen>
136
137 <para>
138 This package does not come with a test suite.
139 </para>
140
141 <para>
142 Now, as the <systemitem class="username">root</systemitem> user:
143 </para>
144
145<screen role="root"><userinput>ninja install</userinput></screen>
146<!-- For some reason, there are I/O errors with the DTD @ freedesktop
147 that causes error messages to flood stdin. -->
148
149 <para>
150 Move the documentation to a versioned directory:
151 </para>
152
153<screen role="root"><userinput>mv -v /usr/share/doc/gnome-session{,-&gnome-session-version;}</userinput></screen>
154
155
156 <para>This package creates two Xorg based .desktop files in the
157 /usr/share/xsessions/ directory. Only one is needed in a
158 BLFS system, so prevent the extra file showing up as an option
159 in a window manager. Also differentiate the X11 and Wayland versions
160 of Gnome. As the &root; user:</para>
161
162<screen role="root"><userinput>mkdir -p /usr/share/xsessions/deprecated &amp;&amp;
163mv -v /usr/share/xsessions/gnome-xorg.desktop /usr/share/xsessions/deprecated &amp;&amp;
164sed -i '/Name/s/$/ (X11)/' /usr/share/xsessions/gnome.desktop
165</userinput></screen>
166
167 <para revision="sysv">
168 Now, as the <systemitem class="username">root</systemitem> user,
169 remove systemd units that are useless on SysV systems:
170 </para>
171
172<screen role="root" revision="sysv"><userinput>rm -rv /tmp/{*.d,*.target,*.service}</userinput></screen>
173
174 </sect2>
175
176 <sect2 role="commands">
177 <title>Command Explanations</title>
178
179 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
180 href="../../xincludes/meson-buildtype-release.xml"/>
181 </sect2>
182
183 <sect2 role="starting">
184 <title>Starting GNOME</title>
185
186 <para>
187 The easiest way to start GNOME is to use a display manager.
188 <xref linkend="gdm"/> is the recommended display manager.
189 </para>
190
191 <para>
192 It is also possible to start <application>GNOME</application> from the
193 command line. However, you must still have <xref linkend="gdm"/> installed
194 for some portions of the desktop to work. One reason to start from the
195 command line is if you want Wayland support on a system that has the
196 proprietary NVIDIA driver installed, since GDM will not show the Wayland
197 session type on such a system.
198 </para>
199
200 <para>
201 To start <application>GNOME</application> using
202 <xref role="nodep" linkend="xinit"/>, run the following commands:
203 </para>
204
205<screen role="nodump"><userinput>cat &gt; ~/.xinitrc &lt;&lt; "EOF"
206<literal>dbus-run-session gnome-session</literal>
207EOF
208
209startx</userinput></screen>
210
211 <para>
212 Alternatively, to start <application>GNOME</application> with Wayland
213 support, run the following command:
214 </para>
215
216<screen role="nodump"><userinput>XDG_SESSION_TYPE=wayland dbus-run-session gnome-session</userinput></screen>
217
218 </sect2>
219
220 <sect2 role="content">
221 <title>Contents</title>
222
223 <segmentedlist>
224 <segtitle>Installed Programs</segtitle>
225 <segtitle>Installed Libraries</segtitle>
226 <segtitle>Installed Directories</segtitle>
227
228 <seglistitem>
229 <seg>
230 gnome-session, gnome-session-inhibit, and gnome-session-quit
231 </seg>
232 <seg>
233 None
234 </seg>
235 <seg>
236 /usr/share/doc/gnome-session-&gnome-session-version; and
237 /usr/share/gnome-session
238 </seg>
239 </seglistitem>
240 </segmentedlist>
241
242 <variablelist>
243 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
244 <?dbfo list-presentation="list"?>
245 <?dbhtml list-presentation="table"?>
246
247 <varlistentry id="gnome-session-prog">
248 <term><command>gnome-session</command></term>
249 <listitem>
250 <para>
251 is used to start up the <application>GNOME</application>
252 Desktop environment
253 </para>
254 <indexterm zone="gnome-session gnome-session-prog">
255 <primary sortas="b-gnome-session">gnome-session</primary>
256 </indexterm>
257 </listitem>
258 </varlistentry>
259
260 <varlistentry id="gnome-session-inhibit">
261 <term><command>gnome-session-inhibit</command></term>
262 <listitem>
263 <para>
264 is used to inhibit certain <application>GNOME</application>
265 Session functionality while executing the given command
266 </para>
267 <indexterm zone="gnome-session gnome-session-inhibit">
268 <primary sortas="b-gnome-session-inhibit">gnome-session-inhibit</primary>
269 </indexterm>
270 </listitem>
271 </varlistentry>
272
273 <varlistentry id="gnome-session-quit">
274 <term><command>gnome-session-quit</command></term>
275 <listitem>
276 <para>
277 is used to end the <application>GNOME</application> Session
278 </para>
279 <indexterm zone="gnome-session gnome-session-quit">
280 <primary sortas="b-gnome-session-quit">gnome-session-quit</primary>
281 </indexterm>
282 </listitem>
283 </varlistentry>
284
285 </variablelist>
286
287 </sect2>
288
289</sect1>
Note: See TracBrowser for help on using the repository browser.