source: x/installing/x7server.xml@ 1ed7820

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 1ed7820 was 1ed7820, checked in by Bruce Dubbs <bdubbs@…>, 12 years ago

Update build validations

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

  • Property mode set to 100644
File size: 7.9 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 "http://xorg.freedesktop.org/releases/individual/xserver/xorg-server-&xorg-server-version;.tar.bz2">
8 <!ENTITY xorg-server-download-ftp "ftp://ftp.x.org/pub/individual/xserver/xorg-server-&xorg-server-version;.tar.bz2">
9 <!ENTITY xorg-server-md5sum "8796fff441e5435ee36a72579008af24">
10 <!ENTITY xorg-server-size "4.8 MB">
11 <!ENTITY xorg-server-buildsize "441 MB">
12 <!ENTITY xorg-server-time "1.9 SBU">
13
14]>
15
16<sect1 id="xorg7-server" xreflabel="Xorg-Server-&xorg-server-version;">
17 <?dbhtml filename="x7server.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="xorg7-server">
27 <primary sortas="a-xorg7-server">Xorg Server</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to Xorg-Server</title>
32
33 <para>The <application>Xorg</application> Server is the core
34 of the X Window system.</para>
35
36 &lfs70_checked;
37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>Download (HTTP): <ulink url="&xorg-server-download-http;"/></para>
42 </listitem>
43 <listitem>
44 <para>Download (FTP): <ulink url="&xorg-server-download-ftp;"/></para>
45 </listitem>
46 <listitem>
47 <para>Download MD5 sum: &xorg-server-md5sum;</para>
48 </listitem>
49 <listitem>
50 <para>Download size: &xorg-server-size;</para>
51 </listitem>
52 <listitem>
53 <para>Estimated disk space required: &xorg-server-buildsize;</para>
54 </listitem>
55 <listitem>
56 <para>Estimated build time: &xorg-server-time;</para>
57 </listitem>
58 </itemizedlist>
59
60 <bridgehead renderas="sect3">Xorg Server Dependencies</bridgehead>
61
62 <bridgehead renderas="sect4">Required</bridgehead>
63 <para role="required"><xref linkend="openssl"/>,
64 <xref linkend="pixman"/>,
65 <xref linkend="xorg7-font"/>, and
66 <xref linkend="xkeyboard-config"/></para>
67
68 <bridgehead renderas="sect4">Optional</bridgehead>
69 <para><xref linkend="dbus"/>,
70 <xref linkend="doxygen"/> (to build API documentation),
71 <xref linkend="xmlto"/>, (to build documentation),
72 <xref linkend="fop"/>, (to build documentation),
73 <xref linkend="gs"/> (to build documentation),
74 <xref linkend="hal"/>,
75 <xref linkend="mesalib"/> (required for DRI)</para>
76
77 <para condition="html" role="usernotes">User Notes:
78 <ulink url='&blfs-wiki;/Xorg7Server'/></para>
79
80 </sect2>
81
82 <sect2 role="installation">
83 <title>Installation of Xorg Server</title>
84
85 <para>Install the server by running the following commands:</para>
86
87<screen><userinput>./configure $XORG_CONFIG \
88 --with-module-dir=$XORG_PREFIX/lib/X11/modules \
89 --with-xkb-output=/var/lib/xkb \
90 --enable-install-setuid &amp;&amp;
91make</userinput></screen>
92
93 <para>This package does not come with a test suite.</para>
94
95 <para>Now as the <systemitem class="username">root</systemitem>
96 user:</para>
97
98<screen role="root"><userinput>make install &amp;&amp;
99ln -s $XORG_PREFIX/share/X11/xorg.conf.d /etc/X11</userinput></screen>
100
101 </sect2>
102
103 <sect2 role="commands">
104 <title>Command Explanations</title>
105
106 <para><parameter>--with-module-dir=...</parameter>: This parameter
107 sets the destination for the installed modules.</para>
108
109 <para><parameter>--enable-install-setuid</parameter>: The Xorg binary must
110 run as the root user. This switch ensures that the binary is installed
111 setuid when <command>make</command> is run by an unprivileged user.</para>
112
113 <para><option>--disable-glx</option>: Disable building of the GLX
114 extension. This parameter is required if building without
115 <application>Mesa</application>.</para>
116
117 <para><option>--disable-dri</option>: Disable building of the DRI
118 extension. This parameter is required if building without
119 <application>Mesa</application>.</para>
120
121 </sect2>
122
123 <sect2 role="content">
124 <title>Contents</title>
125
126 <segmentedlist>
127 <segtitle>Installed Programs</segtitle>
128 <segtitle>Installed Libraries</segtitle>
129 <segtitle>Installed Directories</segtitle>
130
131 <seglistitem>
132 <seg>cvt, dmx*, gtf, vdltodmx, X, Xnest, Xorg, Xvfb,
133 and xdmxconfig</seg>
134 <seg>None</seg>
135 <seg>/var/lib/xkb and the following subdirectories of
136 <envar>$XORG_PREFIX</envar>/: include/xorg, include/X11/pixmaps,
137 lib/X11/{getconfig,modules} and lib/xorg</seg>
138 </seglistitem>
139 </segmentedlist>
140
141 <variablelist>
142 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
143 <?dbfo list-presentation="list"?>
144 <?dbhtml list-presentation="table"?>
145
146 <varlistentry id="cvt-x7">
147 <term><command>cvt</command></term>
148 <listitem>
149 <para>calculates VESA CVT mode lines.</para>
150 <indexterm zone="xorg7-server cvt-x7">
151 <primary sortas="b-cvt">cvt</primary>
152 </indexterm>
153 </listitem>
154 </varlistentry>
155
156 <varlistentry id="dmx-x7">
157 <term><command>dmx*</command></term>
158 <listitem>
159 <para>are various tools for manipulating the dmx server.</para>
160 <indexterm zone="xorg7-server dmx-x7">
161 <primary sortas="b-dmx">dmx*</primary>
162 </indexterm>
163 </listitem>
164 </varlistentry>
165
166 <varlistentry id="gtf-x7">
167 <term><command>gtf</command></term>
168 <listitem>
169 <para>calculates VESA GTF mode lines.</para>
170 <indexterm zone="xorg7-server gtf-x7">
171 <primary sortas="b-gtf">gtf</primary>
172 </indexterm>
173 </listitem>
174 </varlistentry>
175
176 <varlistentry id="vdltodmx-x7">
177 <term><command>vdltodmx</command></term>
178 <listitem>
179 <para>is a tool to convert VDL config files to DMX config
180 files.</para>
181 <indexterm zone="xorg7-server vdltodmx-x7">
182 <primary sortas="b-vdltodmx">vdltodmx</primary>
183 </indexterm>
184 </listitem>
185 </varlistentry>
186
187 <varlistentry id="X-x7">
188 <term><command>X</command></term>
189 <listitem>
190 <para>is a symbolic link to Xorg.</para>
191 <indexterm zone="xorg7-server X-x7">
192 <primary sortas="b-X">X</primary>
193 </indexterm>
194 </listitem>
195 </varlistentry>
196
197 <varlistentry id="Xnest-x7">
198 <term><command>Xnest</command></term>
199 <listitem>
200 <para>is a nested X server.</para>
201 <indexterm zone="xorg7-server Xnest-x7">
202 <primary sortas="b-Xnest">Xnest</primary>
203 </indexterm>
204 </listitem>
205 </varlistentry>
206
207 <varlistentry id="Xorg-x7">
208 <term><command>Xorg</command></term>
209 <listitem>
210 <para>is the X11R7 X Server.</para>
211 <indexterm zone="xorg7-server Xorg-x7">
212 <primary sortas="b-Xorg">Xorg</primary>
213 </indexterm>
214 </listitem>
215 </varlistentry>
216
217 <varlistentry id="Xvfb-x7">
218 <term><command>Xvfb</command></term>
219 <listitem>
220 <para>is the virtual framebuffer X server for X Version 11.</para>
221 <indexterm zone="xorg7-server Xvfb-x7">
222 <primary sortas="b-Xvfb">Xvfb</primary>
223 </indexterm>
224 </listitem>
225 </varlistentry>
226
227 <varlistentry id="xdmxconfig-x7">
228 <term><command>xdmxconfig</command></term>
229 <listitem>
230 <para>is a graphical configuration utility for the dmx server.</para>
231 <indexterm zone="xorg7-server xdmxconfig-x7">
232 <primary sortas="b-xdmxconfig">xdmxconfig</primary>
233 </indexterm>
234 </listitem>
235 </varlistentry>
236
237 </variablelist>
238
239 </sect2>
240
241</sect1>
Note: See TracBrowser for help on using the repository browser.