source: gnome/platform/gnome-session.xml@ 02c8038

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 02c8038 was 02c8038, checked in by DJ Lucas <dj@…>, 5 years ago

Systemd is a required dependency for gnome-session.

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

  • Property mode set to 100644
File size: 6.4 KB
RevLine 
[2e704d1b]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
[34fe1f4d]8 "&gnome-download-http;/gnome-session/&gnome-minor-30;/gnome-session-&gnome-session-version;.tar.xz">
[2e704d1b]9 <!ENTITY gnome-session-download-ftp
[34fe1f4d]10 "&gnome-download-ftp;/gnome-session/&gnome-minor-30;/gnome-session-&gnome-session-version;.tar.xz">
11 <!ENTITY gnome-session-md5sum "45c33dfaad7d40c008f8131aff2e0391">
12 <!ENTITY gnome-session-size "476 KB">
[ab3656c]13 <!ENTITY gnome-session-buildsize "15 MB">
[34fe1f4d]14 <!ENTITY gnome-session-time "0.2 SBU">
[2e704d1b]15]>
16
17<sect1 id="gnome-session" xreflabel="gnome-session-&gnome-session-version;" revision="systemd">
18 <?dbhtml filename="gnome-session.html"?>
19
20 <sect1info>
21 <othername>$LastChangedBy$</othername>
22 <date>$Date$</date>
23 </sect1info>
24
25 <title>gnome-session-&gnome-session-version;</title>
26
27 <indexterm zone="gnome-session">
28 <primary sortas="a-gnome-session">gnome-session</primary>
29 </indexterm>
30
31 <sect2 role="package">
32 <title>Introduction to GNOME Session</title>
33
34 <para>
35 The <application>GNOME Session</application> package contains
36 the <application>GNOME</application> session manager.
37 </para>
38
[0ecaac7]39 &lfs83_checked;
[2e704d1b]40
41 <bridgehead renderas="sect3">Package Information</bridgehead>
42 <itemizedlist spacing="compact">
43 <listitem>
44 <para>
45 Download (HTTP): <ulink url="&gnome-session-download-http;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download (FTP): <ulink url="&gnome-session-download-ftp;"/>
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download MD5 sum: &gnome-session-md5sum;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Download size: &gnome-session-size;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated disk space required: &gnome-session-buildsize;
66 </para>
67 </listitem>
68 <listitem>
69 <para>
70 Estimated build time: &gnome-session-time;
71 </para>
72 </listitem>
73 </itemizedlist>
74
75 <bridgehead renderas="sect3">GNOME Session Dependencies</bridgehead>
76
77 <bridgehead renderas="sect4">Required</bridgehead>
78 <para role="required">
79 <xref linkend="dbus-glib"/>,
80 <xref linkend="gnome-desktop"/>,
81 <xref linkend="json-glib"/>,
[02c8038]82 <xref linkend="mesa"/>,
83 <xref linkend="systemd"/>,
84 and <xref linkend="upower"/>
[2e704d1b]85 </para>
86
87 <bridgehead renderas="sect4">Optional</bridgehead>
88 <para role="optional">
[0129a2f5]89 <xref linkend="GConf"/>,
90 <xref linkend="xmlto"/>, and
[2e704d1b]91 <xref linkend="libxslt"/> with
92 <xref linkend="DocBook"/> and
93 <xref linkend="docbook-xsl"/> (to build the documentation)
94 </para>
95
96 <para condition="html" role="usernotes">User Notes:
97 <ulink url="&blfs-wiki;/gnome-session"/>
98 </para>
99 </sect2>
100
101 <sect2 role="installation">
102 <title>Installation of GNOME Session</title>
103
[75215bf]104 <para>
105 When running Gnome under <xref linkend="wayland"/>, environment settings
[881bfdc]106 are not imported for the user using the system profile. The Wayland
107 developers are currently undecided on a standard method to provide system
108 environment settings for user sessions. To work around this limitation,
[ab3656c]109 execute the following command to make
[881bfdc]110 <command>gnome-session</command> use a login shell:
[75215bf]111 </para>
112
[881bfdc]113<screen><userinput>sed 's@/bin/sh@/bin/sh -l@' -i gnome-session/gnome-session.in</userinput></screen>
[75215bf]114
[2e704d1b]115 <para>
116 Install <application>GNOME Session</application> by
117 running the following commands:
118 </para>
119
[fef2695]120<screen><userinput>mkdir build &amp;&amp;
121cd build &amp;&amp;
122
[0ecaac7]123meson --prefix=/usr .. &amp;&amp;
[fef2695]124ninja</userinput></screen>
[2e704d1b]125
126 <para>
127 This package does not come with a test suite.
128 </para>
129
130 <para>
131 Now, as the <systemitem class="username">root</systemitem> user:
132 </para>
133
[fef2695]134<screen role="root"><userinput>ninja install</userinput></screen>
[ab3656c]135<!-- For some reason, there are I/O errors with the DTD @ freedesktop
136 that causes error messages to flood stdin. -->
[2e704d1b]137
138 </sect2>
139
140 <sect2 role="content">
141 <title>Contents</title>
142
143 <segmentedlist>
144 <segtitle>Installed Programs</segtitle>
145 <segtitle>Installed Libraries</segtitle>
146 <segtitle>Installed Directories</segtitle>
147
148 <seglistitem>
149 <seg>
[ab3656c]150 gnome-session, gnome-session-custom-session, gnome-session-inhibit,
151 and gnome-session-quit
[2e704d1b]152 </seg>
153 <seg>
154 None
155 </seg>
156 <seg>
[0129a2f5]157 /usr/share/doc/gnome-session-&gnome-session-version; and
158 /usr/share/gnome-session
[2e704d1b]159 </seg>
160 </seglistitem>
161 </segmentedlist>
162
163 <variablelist>
164 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
165 <?dbfo list-presentation="list"?>
166 <?dbhtml list-presentation="table"?>
167
168 <varlistentry id="gnome-session-prog">
169 <term><command>gnome-session</command></term>
170 <listitem>
171 <para>
172 is used to start up the <application>GNOME</application>
173 Desktop environment.
174 </para>
175 <indexterm zone="gnome-session gnome-session-prog">
176 <primary sortas="b-gnome-session">gnome-session</primary>
177 </indexterm>
178 </listitem>
179 </varlistentry>
180
181 <varlistentry id="gnome-session-inhibit">
182 <term><command>gnome-session-inhibit</command></term>
183 <listitem>
184 <para>
185 is used to inhibit certain <application>GNOME</application>
186 Session functionality while executing the given command.
187 </para>
188 <indexterm zone="gnome-session gnome-session-inhibit">
189 <primary sortas="b-gnome-session-inhibit">gnome-session-inhibit</primary>
190 </indexterm>
191 </listitem>
192 </varlistentry>
193
194 <varlistentry id="gnome-session-quit">
195 <term><command>gnome-session-quit</command></term>
196 <listitem>
197 <para>
198 is used to end the <application>GNOME</application> Session.
199 </para>
200 <indexterm zone="gnome-session gnome-session-quit">
201 <primary sortas="b-gnome-session-quit">gnome-session-quit</primary>
202 </indexterm>
203 </listitem>
204 </varlistentry>
205
206 </variablelist>
207
208 </sect2>
209
210</sect1>
Note: See TracBrowser for help on using the repository browser.