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

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 1c96292 was 1c96292, checked in by DJ Lucas <dj@…>, 15 years ago

Updated to Xorg-7.5

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

  • Property mode set to 100644
File size: 6.8 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 "dda7842467cda6018fdc87e6002e4db1">
10 <!ENTITY xorg-server-size "4.7 MB">
11 <!ENTITY xorg-server-buildsize "199 MB">
12 <!ENTITY xorg-server-time "2.0 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 <bridgehead renderas="sect3">Package Information</bridgehead>
37 <itemizedlist spacing="compact">
38 <listitem>
39 <para>Download (HTTP): <ulink url="&xorg-server-download-http;"/></para>
40 </listitem>
41 <listitem>
42 <para>Download (FTP): <ulink url="&xorg-server-download-ftp;"/></para>
43 </listitem>
44 <listitem>
45 <para>Download MD5 sum: &xorg-server-md5sum;</para>
46 </listitem>
47 <listitem>
48 <para>Download size: &xorg-server-size;</para>
49 </listitem>
50 <listitem>
51 <para>Estimated disk space required: &xorg-server-buildsize;</para>
52 </listitem>
53 <listitem>
54 <para>Estimated build time: &xorg-server-time;</para>
55 </listitem>
56 </itemizedlist>
57
58 <bridgehead renderas="sect3">Xorg Server Dependencies</bridgehead>
59
60 <bridgehead renderas="sect4">Required</bridgehead>
61 <para role="required"><xref linkend="pixman"/>,
62 <xref linkend="xorg7-font"/>, and
63 <xref linkend="xkeyboard-config"/></para>
64
65 <bridgehead renderas="sect4">Recommended</bridgehead>
66 <para role="recommended"><xref linkend="hal"/> (required for hotplugging of
67 input devices), and <xref linkend="mesalib"/> (required for DRI)</para>
68
69<bridgehead renderas="sect4">Optional</bridgehead>
70 <para role="optional"><xref linkend="openssl"/></para>
71
72 <para condition="html" role="usernotes">User Notes:
73 <ulink url='&blfs-wiki;/Xorg7Server'/></para>
74
75 </sect2>
76
77 <sect2 role="installation">
78 <title>Installation of Xorg Server</title>
79
80 <para>Install the server by running the following commands:</para>
81
82<screen><userinput>./configure $XORG_CONFIG \
83 --with-module-dir=$XORG_PREFIX/lib/X11/modules \
84 --with-xkb-output=/var/lib/xkb \
85 --enable-install-setuid &amp;&amp;
86make</userinput></screen>
87
88 <para>This package does not come with a test suite.</para>
89
90 <para>Now as the <systemitem class="username">root</systemitem>
91 user:</para>
92
93<screen role="root"><userinput>make install</userinput></screen>
94
95 </sect2>
96
97 <sect2 role="commands">
98 <title>Command Explanations</title>
99
100 <para><parameter>--with-module-dir=...</parameter>: This parameter
101 sets the destination for the installed modules.</para>
102
103 <para><parameter>--enable-install-setuid</parameter>: The Xorg binary must
104 run as the root user. This switch ensures that the binary is installed
105 setuid when <command>make</command> is run by an unprivileged user.</para>
106
107 <para><option>--disable-glx</option>: Disable building of the GLX
108 extension. This parameter is required if building without
109 <application>Mesa</application>.</para>
110
111 <para><option>--disable-dri</option>: Disable building of the DRI
112 extension. This parameter is required if building without
113 <application>Mesa</application>.</para>
114
115 <para><option>--disable-config-hal</option>: Disable the use of
116 <application>HAL</application>.</para>
117
118 <para><option>--disable-config-dbus</option>: Disable the use of
119 <application>D-Bus</application>.</para>
120 </sect2>
121
122 <sect2 role="content">
123 <title>Contents</title>
124
125 <segmentedlist>
126 <segtitle>Installed Programs</segtitle>
127 <segtitle>Installed Libraries</segtitle>
128 <segtitle>Installed Directories</segtitle>
129
130 <seglistitem>
131 <seg>cvt, gtf, X, Xnest, Xorg, and Xvfb</seg>
132 <seg>None</seg>
133 <seg>/var/lib/xkb and the following subdirectories of
134 <envar>$XORG_PREFIX</envar>/: include/xorg, include/X11/pixmaps,
135 lib/X11/{getconfig,modules} and lib/xorg</seg>
136 </seglistitem>
137 </segmentedlist>
138
139 <variablelist>
140 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
141 <?dbfo list-presentation="list"?>
142 <?dbhtml list-presentation="table"?>
143
144 <varlistentry id="cvt-x7">
145 <term><command>cvt</command></term>
146 <listitem>
147 <para>calculates VESA CVT mode lines.</para>
148 <indexterm zone="xorg7-server cvt-x7">
149 <primary sortas="b-cvt">cvt</primary>
150 </indexterm>
151 </listitem>
152 </varlistentry>
153
154 <varlistentry id="gtf-x7">
155 <term><command>gtf</command></term>
156 <listitem>
157 <para>calculates VESA GTF mode lines.</para>
158 <indexterm zone="xorg7-server gtf-x7">
159 <primary sortas="b-gtf">gtf</primary>
160 </indexterm>
161 </listitem>
162 </varlistentry>
163
164 <varlistentry id="X-x7">
165 <term><command>X</command></term>
166 <listitem>
167 <para>is a symbolic link to Xorg.</para>
168 <indexterm zone="xorg7-server X-x7">
169 <primary sortas="b-X">X</primary>
170 </indexterm>
171 </listitem>
172 </varlistentry>
173
174 <varlistentry id="Xnest-x7">
175 <term><command>Xnest</command></term>
176 <listitem>
177 <para>is a nested X server.</para>
178 <indexterm zone="xorg7-server Xnest-x7">
179 <primary sortas="b-Xnest">Xnest</primary>
180 </indexterm>
181 </listitem>
182 </varlistentry>
183
184 <varlistentry id="Xorg-x7">
185 <term><command>Xorg</command></term>
186 <listitem>
187 <para>is the X11R7 X Server.</para>
188 <indexterm zone="xorg7-server Xorg-x7">
189 <primary sortas="b-Xorg">Xorg</primary>
190 </indexterm>
191 </listitem>
192 </varlistentry>
193
194 <varlistentry id="Xvfb-x7">
195 <term><command>Xvfb</command></term>
196 <listitem>
197 <para>is the virtual framebuffer X server for X Version 11.</para>
198 <indexterm zone="xorg7-server Xvfb-x7">
199 <primary sortas="b-Xvfb">Xvfb</primary>
200 </indexterm>
201 </listitem>
202 </varlistentry>
203
204 </variablelist>
205
206 </sect2>
207
208</sect1>
Note: See TracBrowser for help on using the repository browser.