source: x/installing/xorg-server.xml@ bb7f58e

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since bb7f58e was 4e143323, checked in by Krejzi <krejzi@…>, 12 years ago

Exempi 2.2.0, GC 7.2d, libatomic_ops 7.2d, Obexd 0.47 and Xorg Server 1.12.4. Mark some more packages as LFS 7.2 checkd.

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

  • Property mode set to 100644
File size: 8.2 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 xorg-server-download-http "&xorg-download-http;/xserver/xorg-server-&xorg-server-version;.tar.bz2">
8 <!ENTITY xorg-server-download-ftp "&xorg-download-ftp;/xserver/xorg-server-&xorg-server-version;.tar.bz2">
9 <!ENTITY xorg-server-md5sum "f87d830aa69885275e26dd6327d76a44">
10 <!ENTITY xorg-server-size "5.3 MB">
11 <!ENTITY xorg-server-buildsize "430 MB">
12 <!ENTITY xorg-server-time "2.2 SBU">
13
14]>
15
16<sect1 id="xorg-server" xreflabel="Xorg-Server-&xorg-server-version;">
17 <?dbhtml filename="xorg-server.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>Xorg-Server-&xorg-server-version;</title>
25
26 <indexterm zone="xorg-server">
27 <primary sortas="a-xorg-server">xorg-server</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to Xorg Server</title>
32
33 <para>
34 The <application>Xorg</application> Server is the core
35 of the X Window system.
36 </para>
37
38 &lfs72_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>
44 Download (HTTP): <ulink url="&xorg-server-download-http;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download (FTP): <ulink url="&xorg-server-download-ftp;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download MD5 sum: &xorg-server-md5sum;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download size: &xorg-server-size;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated disk space required: &xorg-server-buildsize;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated build time: &xorg-server-time;
70 </para>
71 </listitem>
72 </itemizedlist>
73
74 <bridgehead renderas="sect3">Xorg Server Dependencies</bridgehead>
75
76 <bridgehead renderas="sect4">Required</bridgehead>
77 <para role="required">
78 <xref linkend="mesalib"/>,
79 <xref linkend="openssl"/>,
80 <xref linkend="pixman"/>,
81 <xref linkend="xorg7-font"/> and
82 <xref linkend="xkeyboard-config"/>
83 </para>
84
85 <bridgehead renderas="sect4">Optional</bridgehead>
86 <para>
87 <xref linkend="doxygen"/> (to build API documentation),
88 <xref linkend="fop"/>, (to build documentation),
89 <xref linkend="gs"/> (to build documentation) and
90 <xref linkend="xmlto"/>, (to build documentation)
91 </para>
92
93 <para condition="html" role="usernotes">User Notes:
94 <ulink url='&blfs-wiki;/Xorg7Server'/>
95 </para>
96 </sect2>
97
98 <sect2 role="installation">
99 <title>Installation of Xorg Server</title>
100
101 <para>Install the server by running the following commands:</para>
102
103<screen><userinput>./configure $XORG_CONFIG \
104 --with-xkb-output=/var/lib/xkb \
105 --enable-install-setuid &amp;&amp;
106make</userinput></screen>
107
108 <para>
109 To test the results, issue: <command>make check</command>.
110 </para>
111
112 <para>
113 Now as the <systemitem class="username">root</systemitem>
114 user:
115 </para>
116
117<screen role="root"><userinput>make install &amp;&amp;
118mkdir -pv /etc/X11/xorg.conf.d &amp;&amp;
119cat &gt;&gt; /etc/sysconfig/createfiles &lt;&lt; "EOF"
120/tmp/.ICE-unix dir 1777 root root
121/tmp/.X11-unix dir 1777 root root
122EOF</userinput></screen>
123
124 </sect2>
125
126 <sect2 role="commands">
127 <title>Command Explanations</title>
128
129 <para>
130 <option>--enable-install-setuid</option>: The Xorg binary must run as
131 the root user. This switch ensures that the binary is installed
132 setuid when <command>make</command> is run by an unprivileged user.
133 </para>
134
135 <para>
136 <command>cat &gt;&gt; /etc/sysconfig/createfiles...</command>: This
137 command creates the <filename class="directory">/tmp/.ICE-unix</filename>
138 and <filename class="directory">/tmp/.X11-unix</filename> directories at
139 startup, and ensures that the permissions and ownership are correct as
140 required by the server.
141 </para>
142
143 </sect2>
144
145 <sect2 role="content">
146 <title>Contents</title>
147
148 <segmentedlist>
149 <segtitle>Installed Programs</segtitle>
150 <segtitle>Installed Directories</segtitle>
151
152 <seglistitem>
153 <seg>
154 cvt, dmxaddinput, dmxaddscreen, dmxinfo, dmxreconfig, dmxresize,
155 dmxrminput, dmxrmscreen, dmxtodmx, dmxwininfo, gtf, vdltodmx, X,
156 Xdmx, xdmxconfig, Xnest, Xorg and Xvfb
157 </seg>
158 <seg>
159 $XORG_PREFIX/include/xorg,
160 $XORG_PREFIX/lib/xorg,
161 $XORG_PREFIX/share/X11/xorg.conf.d and
162 /var/lib/xkb
163 </seg>
164 </seglistitem>
165 </segmentedlist>
166
167 <variablelist>
168 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
169 <?dbfo list-presentation="list"?>
170 <?dbhtml list-presentation="table"?>
171
172 <varlistentry id="cvt-x7">
173 <term><command>cvt</command></term>
174 <listitem>
175 <para>
176 calculates VESA CVT mode lines.
177 </para>
178 <indexterm zone="xorg-server cvt-x7">
179 <primary sortas="b-cvt">cvt</primary>
180 </indexterm>
181 </listitem>
182 </varlistentry>
183
184 <varlistentry id="dmx-x7">
185 <term><command>dmx*</command></term>
186 <listitem>
187 <para>
188 are various tools used for manipulating the dmx server.
189 </para>
190 <indexterm zone="xorg-server dmx-x7">
191 <primary sortas="b-dmx">dmx*</primary>
192 </indexterm>
193 </listitem>
194 </varlistentry>
195
196 <varlistentry id="gtf-x7">
197 <term><command>gtf</command></term>
198 <listitem>
199 <para>
200 calculates VESA GTF mode lines.
201 </para>
202 <indexterm zone="xorg-server gtf-x7">
203 <primary sortas="b-gtf">gtf</primary>
204 </indexterm>
205 </listitem>
206 </varlistentry>
207
208 <varlistentry id="vdltodmx-x7">
209 <term><command>vdltodmx</command></term>
210 <listitem>
211 <para>
212 is a tool used to convert VDL config files to DMX config
213 files.
214 </para>
215 <indexterm zone="xorg-server vdltodmx-x7">
216 <primary sortas="b-vdltodmx">vdltodmx</primary>
217 </indexterm>
218 </listitem>
219 </varlistentry>
220
221 <varlistentry id="X-x7">
222 <term><command>X</command></term>
223 <listitem>
224 <para>
225 is a symbolic link to Xorg.
226 </para>
227 <indexterm zone="xorg-server X-x7">
228 <primary sortas="b-X">X</primary>
229 </indexterm>
230 </listitem>
231 </varlistentry>
232
233 <varlistentry id="Xnest-x7">
234 <term><command>Xnest</command></term>
235 <listitem>
236 <para>
237 is a nested X server.
238 </para>
239 <indexterm zone="xorg-server Xnest-x7">
240 <primary sortas="b-Xnest">Xnest</primary>
241 </indexterm>
242 </listitem>
243 </varlistentry>
244
245 <varlistentry id="Xorg-x7">
246 <term><command>Xorg</command></term>
247 <listitem>
248 <para>
249 is the X11R7 X Server.
250 </para>
251 <indexterm zone="xorg-server Xorg-x7">
252 <primary sortas="b-Xorg">Xorg</primary>
253 </indexterm>
254 </listitem>
255 </varlistentry>
256
257 <varlistentry id="Xvfb-x7">
258 <term><command>Xvfb</command></term>
259 <listitem>
260 <para>
261 is the virtual framebuffer X server for X Version 11.
262 </para>
263 <indexterm zone="xorg-server Xvfb-x7">
264 <primary sortas="b-Xvfb">Xvfb</primary>
265 </indexterm>
266 </listitem>
267 </varlistentry>
268
269 <varlistentry id="xdmxconfig-x7">
270 <term><command>xdmxconfig</command></term>
271 <listitem>
272 <para>
273 is a graphical configuration utility for the dmx server.
274 </para>
275 <indexterm zone="xorg-server xdmxconfig-x7">
276 <primary sortas="b-xdmxconfig">xdmxconfig</primary>
277 </indexterm>
278 </listitem>
279 </varlistentry>
280
281 </variablelist>
282
283 </sect2>
284
285</sect1>
Note: See TracBrowser for help on using the repository browser.