source: x/installing/x7server.xml@ 241ac2bb

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 241ac2bb was 6f3e2f8, checked in by Wayne Blaszczyk <wblaszcz@…>, 14 years ago

Updated to GStreamer-0.10.25. Also made OpenSSL a requirement for Xorg-Server-1.7.1

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