source: x/installing/xorg7.xml@ 190568b

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 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 190568b was 190568b, checked in by Randy McMurchy <randy@…>, 18 years ago

Fixed some typos and removed excess EOL whitespace from the Xorg7 instructions

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

  • Property mode set to 100644
File size: 24.4 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="xorg7" xreflabel="X.org-&xorg7-version;">
9 <?dbhtml filename="xorg7.html"?>
10
11 <sect1info>
12 <othername>$LastChangedBy$</othername>
13 <date>$Date$</date>
14<!-- <keywordset>
15 <keyword role="package">X11R&xorg7-version;-src.tar</keyword>
16 <keyword role="ftpdir">Xorg7</keyword>
17 </keywordset>
18########## Need a way to fix this on the mirrors ##########
19##### Maybe a single tarball is the way to handle it ######
20-->
21
22
23 </sect1info>
24
25 <title>Xorg-&xorg7-version;</title>
26
27 <indexterm zone="xorg7">
28 <primary sortas="a-xorg7">Xorg</primary>
29 </indexterm>
30
31 <sect2 role="package">
32 <title>Introduction to Xorg</title>
33
34 <para><application>Xorg</application> is a freely redistributable,
35 open-source implementation of the <application>X</application> Window
36 System. This system provides a client/server interface between display
37 hardware (the mouse, keyboard, and video displays) and the desktop
38 environment, while also providing both the windowing infrastructure and a
39 standardized application interface (API).</para>
40
41 <bridgehead renderas="sect3">Xorg Dependencies</bridgehead>
42
43 <bridgehead renderas="sect4">Required</bridgehead>
44 <para role="required"><xref linkend="fontconfig"/>,
45 <xref linkend="libdrm"/>,
46 <xref linkend="libpng"/>, and
47 <xref linkend="pkgconfig"/></para>
48
49 <bridgehead renderas="sect4">Optional</bridgehead>
50 <para role="optional"><xref linkend="linux-pam"/></para>
51
52 <bridgehead renderas="sect3">Xorg Download and Installation
53 Instructions</bridgehead>
54
55 <para>With the modular build system, it is no longer possible to download
56 the entire package in a single file. In fact, there may be as many as
57 280 files that need to be fetched from the download location. To assist
58 with such a large task, it is strongly recommended to install
59 <xref linkend="wget"/> for downloading the needed files. A complete
60 <application>wget</application> script is available for each section at
61 <ulink
62 url="http://anduin.linuxfromscratch.org/sources/BLFS/svn/x/wget/"/>.</para>
63
64 <para>Given the number of packages available, deciding which packages you
65 need to install for your particular setup may seem a bit overwhelming at
66 first. Take a look at<ulink
67 url="http://lists.x.org/archives/xorg-modular/2005-November/000801.html">
68 this thread</ulink> to get an idea of what you will need. If you are
69 unsure, you should install all packages at the cost of extra
70 disk space.</para>
71
72 <note>
73 <para>The installed size of <application>Xorg</application> can
74 be reduced considerably by installing only the packages that you will
75 need and use. However, the BLFS book cannot account for all dependencies
76 and build options for individual <application>Xorg</application>
77 packages. The instructions assume that all packages have been built
78 from a particular group unless otherwise noted. A
79 <ulink url="http://wiki.linuxfromscratch.org/blfs/wiki/Xorg-7.0.0">
80 wiki</ulink> page containing dependency information, for users who wish
81 to cut down on the installed size of <application>Xorg</application>, is
82 under development. You are encouraged to add to these
83 pages if you discover additional information that may be helpful to
84 other users.</para>
85 </note>
86
87 <para>Additionally, because of the large number of repetitive commands,
88 you are encouraged to script the build. For most sections, you can use
89 the following commands to compile and install all packages in your build
90 directory:</para>
91
92<screen>for package in *.tar.bz2
93do
94 packagedir=`echo $package | sed 's/.tar.bz2//'`
95 tar -xf $package &amp;&amp;
96 cd $packagedir &amp;&amp;
97 ./configure $XORG_CONFIG &amp;&amp;
98 make &amp;&amp;
99 make install
100 if [ $? -ne 0 ]; then
101 break #stop the build if the previous command failed
102 fi
103 cd .. &amp;&amp;
104 rm -rf $packagedir
105done 2&gt;&amp;1 | tee -a ../xorg-compile.log #log the entire loop</screen>
106
107 </sect2>
108
109 <sect2>
110 <title>Setting up the Xorg Build Environment</title>
111
112 <para>First, you'll need to create a working directory:</para>
113
114<screen><userinput>mkdir xc &amp;&amp;
115cd xc</userinput></screen>
116
117 <para>As with previous releases of the X Window System, it may be
118 desirable to install <application>Xorg</application> into an alternate
119 prefix. This is no longer common practice among Linux distributions.
120 The common installation prefix for <application>Xorg</application> on
121 Linux is <filename class="directory">/usr</filename>. There is no
122 standard alternate prefix, nor is there any exception in the current
123 revision of the Filesystem Hierarchy Standard for Release 7 of the X
124 Window System. Alan Coopersmith of Sun Microsystems, has recently
125 stated "At Sun, we were using
126 <filename class="directory">/usr/X11</filename> and plan to stick with
127 it." Only the <filename class="directory">/opt/*</filename> prefix or
128 the <filename class="directory">/usr</filename> prefix adhere to the
129 current FHS guidelines.</para>
130
131 <para>Choose your installation prefix, and set the
132 <envar>XORG_PREFIX</envar> variable with the following
133 command:</para>
134
135<screen><userinput>export XORG_PREFIX="<replaceable>[/usr]</replaceable>"</userinput></screen>
136
137 <para>Throughout these instructions, you will use the same three
138 <command>configure</command> switches for all of the packages. Create the
139 <envar>XORG_CONFIG</envar> variable to use for substitution:</para>
140
141<screen><userinput>export XORG_CONFIG="--prefix=$XORG_PREFIX --sysconfdir=/etc --localstatedir=/var"</userinput></screen>
142
143 <note>
144 <para>If you've decided to use an alternate prefix, be sure to add
145 <filename class="directory"><replaceable>[/usr]</replaceable>/lib/pkgconfig</filename>
146 to your <envar>PKG_CONFIG_PATH</envar> variable.</para>
147 </note>
148
149 </sect2>
150
151 <sect2>
152 <title>Xorg Protocol Headers</title>
153
154 <indexterm zone="xorg7">
155 <primary sortas="a-xorg7-proto">Xorg Protocol Headers</primary>
156 </indexterm>
157
158 <para>The <application>Xorg</application> protocol headers provide the
159 header files required to build the system, and to allow other
160 applications to build against the installed X Window system.</para>
161
162 <para><application>Xorg</application> Proto packages can be downloaded
163 individually from <ulink
164 url="http://xorg.freedesktop.org/releases/X11R7.0/src/proto/"/>.</para>
165
166 <sect3 role="installation">
167 <title>Installation of Xorg Protocol Headers</title>
168
169 <para>Install the <application>Xorg</application> protocol headers
170 by running the following commands for each package to be installed.</para>
171
172<screen><userinput>./configure $XORG_CONFIG</userinput></screen>
173
174 <para>Now as the <systemitem class="username">root</systemitem>
175 user:</para>
176
177<screen><userinput role="root">make install</userinput></screen>
178
179 </sect3>
180
181 </sect2>
182
183 <sect2>
184 <title>Xorg Utilities</title>
185
186 <indexterm zone="xorg7">
187 <primary sortas="a-xorg7-data">Xorg Utilities</primary>
188 </indexterm>
189
190 <para>The <application>Xorg</application> utility packages provide
191 needed utilities, not for the <application>Xorg</application>
192 installation itself, but for other applications that make use of
193 legacy X11R6 installation methods.</para>
194
195 <para><application>Xorg</application> Utility packages can be downloaded
196 individually from <ulink
197 url="http://xorg.freedesktop.org/releases/X11R7.0/src/util/"/>.</para>
198
199 <sect3 role="installation">
200 <title>Installation of Xorg Utilities</title>
201
202 <para>First install the <application>xorg-cf-files</application> package
203 with the following commands:</para>
204
205<screen><userinput>sed -i "s@/usr/X11R6@$XORG_PREFIX@" site.def &amp;&amp;
206sed -i "s@/usr/X11R6@$XORG_PREFIX@" X11.tmpl &amp;&amp;
207./configure $XORG_CONFIG --with-config-dir=$XORG_PREFIX/lib/X11/config &amp;&amp;
208make</userinput></screen>
209
210 <para>Now as the <systemitem class="username">root</systemitem>
211 user:</para>
212
213<screen><userinput role="root">make install</userinput></screen>
214
215 <para>Next, install the <application>Imake</application> package with
216 these commands:</para>
217
218<screen><userinput>./configure $XORG_CONFIG --with-config-dir=$XORG_PREFIX/lib/X11/config &amp;&amp;
219make</userinput></screen>
220
221 <para>Now as the <systemitem class="username">root</systemitem>
222 user:</para>
223
224<screen><userinput role="root">make install</userinput></screen>
225
226
227 <para>Finally, build the three remaining packages with the standard build
228 commands:</para>
229
230
231<screen><userinput>./configure $XORG_CONFIG &amp;&amp;
232make</userinput></screen>
233
234 <para>Now as the <systemitem class="username">root</systemitem>
235 user:</para>
236
237<screen><userinput role="root">make install</userinput></screen>
238
239 </sect3>
240
241 </sect2>
242
243 <sect2>
244 <title>Xorg Libraries</title>
245
246 <indexterm zone="xorg7">
247 <primary sortas="a-xorg7-lib">Xorg Libraries</primary>
248 </indexterm>
249
250 <para>The <application>Xorg</application> libraries provide library
251 routines that are used within all X Window applications.</para>
252
253 <para><application>Xorg</application> Library packages can be downloaded
254 individually from <ulink
255 url="http://xorg.freedesktop.org/releases/X11R7.0/src/lib/"/>.</para>
256
257 <sect3>
258 <title>Meeting Library Dependencies</title>
259
260 <para>These 17 libraries must be built first, in the order provided,
261 to cover the dependencies of the other library packages:</para>
262
263<screen>xtrans-X11R7.0-1.0.0.tar.bz2
264libXau-X11R7.0-1.0.0.tar.bz2
265libXdmcp-X11R7.0-1.0.0.tar.bz2
266libX11-X11R7.0-1.0.0.tar.bz2
267libXext-X11R7.0-1.0.0.tar.bz2
268libICE-X11R7.0-1.0.0.tar.bz2
269libSM-X11R7.0-1.0.0.tar.bz2
270libXt-X11R7.0-1.0.0.tar.bz2
271libXmu-X11R7.0-1.0.0.tar.bz2
272libXpm-X11R7.0-3.5.4.2.tar.bz2
273libXp-X11R7.0-1.0.0.tar.bz2
274libXfixes-X11R7.0-3.0.1.2.tar.bz2
275libXrender-X11R7.0-0.9.0.2.tar.bz2
276libfontenc-X11R7.0-1.0.1.tar.bz2
277libxkbfile-X11R7.0-1.0.1.tar.bz2
278libXprintUtil-X11R7.0-1.0.1.tar.bz2
279libXv-X11R7.0-1.0.1.tar.bz2</screen>
280
281 </sect3>
282
283 <sect3 role="installation">
284 <title>Installation of Xorg Libraries</title>
285
286 <para>Install the libraries by running the following commands for each
287 of the chosen packages:</para>
288
289<screen><userinput>./configure $XORG_CONFIG &amp;&amp;
290make</userinput></screen>
291
292 <para>Now as the <systemitem class="username">root</systemitem>
293 user:</para>
294
295<screen><userinput role="root">make install</userinput></screen>
296
297 </sect3>
298
299 <sect3 role="configuration">
300 <title>Configuration of Xorg Libraries</title>
301
302 <para>If you've chosen to install <application>Xorg</application> into
303 <filename class="directory">/usr</filename>, then no further
304 configuration is necessary and you can skip the rest of this section.
305 If you've opted for an alternate prefix, you should create two symlinks
306 to satisfy the expected environment of several packages.
307 Execute the following commands as the root user:</para>
308
309<screen role="root"><userinput>ln -sv $XORG_PREFIX/lib/X11 /usr/lib/X11 &amp;&amp;
310ln -sv $XORG_PREFIX/include/X11 /usr/include/X11</userinput></screen>
311
312 <para>As with other library directories, as the root user you must add
313 <filename class="directory">$XORG_PREFIX/lib</filename> to
314 <filename>/etc/ld.so.conf</filename> and execute
315 <command>/sbin/ldconfig</command>.</para>
316
317 </sect3>
318
319 </sect2>
320
321 <sect2>
322 <title>Xorg Data</title>
323
324 <indexterm zone="xorg7">
325 <primary sortas="a-xorg7-data">Xorg Data</primary>
326 </indexterm>
327
328 <para>The <application>Xorg</application> data packages provide
329 static data such as images and keymaps to the
330 <application>Xorg</application> applications.</para>
331
332 <para><application>Xorg</application> Data packages can be downloaded
333 individually from <ulink
334 url="http://xorg.freedesktop.org/releases/X11R7.0/src/data/"/>.</para>
335
336 <sect3 role="installation">
337 <title>Installation of Xorg Data</title>
338
339 <para>First, install the xbitmap package by running the following
340 commands:</para>
341
342<screen><userinput>./configure $XORG_CONFIG &amp;&amp;
343make</userinput></screen>
344
345 <para>Now as the <systemitem class="username">root</systemitem>
346 user:</para>
347
348<screen><userinput role="root">make install</userinput></screen>
349
350 <note>
351 <para>At this point, you should continue to the applications
352 installation. After the applications installation has completed, you
353 can use the same instructions above to install the xcursor-themes and
354 xkb-data packages.</para>
355 </note>
356
357 </sect3>
358
359 </sect2>
360
361 <sect2>
362 <title>Xorg Applications</title>
363
364 <indexterm zone="xorg7">
365 <primary sortas="a-xorg7-app">Xorg Applications</primary>
366 </indexterm>
367
368 <note>
369 <para>You must install <xref linkend="MesaLib"/> before you install
370 Xorg Applications.</para>
371 </note>
372
373 <para>The <application>Xorg</application> applications provide the
374 expected applications available in previous X Window
375 implementations.</para>
376
377 <para><application>Xorg</application> applications can be downloaded
378 individually from <ulink
379 url="http://xorg.freedesktop.org/releases/X11R7.0/src/app/"/>.</para>
380
381 <sect3 role="installation">
382 <title>Installation of Xorg Applications</title>
383
384 <para>Install the applications by running the following commands for each
385 chosen package:</para>
386
387<screen><userinput>./configure $XORG_CONFIG &amp;&amp;
388make</userinput></screen>
389
390 <para>Now as the <systemitem class="username">root</systemitem>
391 user:</para>
392
393<screen><userinput role="root">make install</userinput></screen>
394
395 <note>
396 <para>The luit package should not be compiled at this point. You
397 should install the luit application after the fonts have been
398 installed.</para>
399 </note>
400
401 <note>
402 <para>Remember to return to the data packages and install the
403 xcursor-themes and xkb-data packages.</para>
404 </note>
405
406</sect3>
407
408 <sect3 role="installation">
409
410 <title>Installation of luit</title>
411
412 <para>A patch is required to fix a race condition in
413 <application>luit</application> that was discovered shortly after
414 release. Download the patch from
415 <ulink url="&patch-root;/luit-1.0.1-race-1.patch"/>.</para>
416
417 <para>Install luit with the following commands:</para>
418
419<screen><userinput>patch -Np1 -i luit_1.0.1-race-1.patch &amp;&amp;
420./configure $XORG_CONFIG &amp;&amp;
421make</userinput></screen>
422
423 <para>Now as the <systemitem class="username">root</systemitem>
424 user:</para>
425
426<screen><userinput role="root">make install</userinput></screen>
427
428 </sect3>
429
430 </sect2>
431
432 <sect2>
433 <title>Xorg Fonts</title>
434
435 <indexterm zone="xorg7">
436 <primary sortas="a-xorg7-fonts">Xorg Fonts</primary>
437 </indexterm>
438
439 <para>The <application>Xorg</application> font packages provide
440 needed fonts to the <application>Xorg</application> applications.</para>
441
442 <para><application>Xorg</application> Font packages can be downloaded
443 individually from <ulink
444 url="http://xorg.freedesktop.org/releases/X11R7.0/src/font/"/>.</para>
445
446 <sect3 role="installation">
447 <title>Installation of Xorg Fonts</title>
448
449 <para>Run the following commands for each package:</para>
450
451 <note>
452 <para>You should install encodings and font-util before all
453 other font packages.</para>
454 </note>
455
456
457<screen><userinput>./configure $XORG_CONFIG</userinput></screen>
458
459 <para>Now as the <systemitem class="username">root</systemitem>
460 user:</para>
461
462<screen><userinput role="root">make install</userinput></screen>
463
464 <note>
465 <para>If you haven't done so, and intend to install
466 <application>luit</application>, do so now.</para>
467 </note>
468
469 </sect3>
470
471 </sect2>
472
473 <sect2>
474 <title>Xorg Server</title>
475
476 <indexterm zone="xorg7">
477 <primary sortas="a-xorg7-server">Xorg Server</primary>
478 </indexterm>
479
480 <para>The <application>Xorg</application> Server is the core
481 of the X Window system.</para>
482
483 <para>The Xorg Server is a single download. Get it from
484 <ulink url="http://xorg.freedesktop.org/releases/X11R7.0/src/xserver/xorg-server-X11R7.0-1.0.1.tar.bz2"/>.</para>
485
486 <sect3 role="installation">
487 <title>Installation of Xorg Server</title>
488
489 <note>
490 <para>You must have the <application>Mesa</application> source
491 directory available when building the
492 <application>Xorg-server</application>.</para>
493 </note>
494
495 <para>Install the server by running the following commands:</para>
496
497<screen><userinput>sed -i "s@*/@*/\n#include &lt;linux/types.h&gt;\n@" \
498 hw/xfree86/os-support/linux/lnx_agp.c &amp;&amp;
499./configure --prefix=$XORG_PREFIX --sysconfdir=/etc \
500 --localstatedir=/var \
501 --with-mesa-source='../../Mesa-&mesalib-version;' \
502 --with-fontdir=/usr/share/fonts \
503 --with-module-dir=$XORG_PREFIX/lib/X11/modules &amp;&amp;
504make</userinput></screen>
505
506 <para>Now as the <systemitem class="username">root</systemitem>
507 user:</para>
508
509<screen><userinput role="root">make install</userinput></screen>
510
511 </sect3>
512
513 </sect2>
514
515 <sect2>
516 <title>Xorg Drivers</title>
517
518 <indexterm zone="xorg7">
519 <primary sortas="a-xorg7-driver">Xorg Drivers</primary>
520 </indexterm>
521
522 <para>The <application>Xorg</application> drivers provide the means
523 for the xserver to take advantage of installed hardware.</para>
524
525 <para><application>Xorg</application> Driver packages can be downloaded
526 individually from <ulink
527 url="http://xorg.freedesktop.org/releases/X11R7.0/src/driver/"/>.</para>
528
529 <sect3 role="installation">
530 <title>Installation of Xorg Drivers</title>
531
532 <warning><para>It is very important not to build display drivers that
533 cannot be used with your hardware. For instance, do not build Sun drivers
534 for an x86 PC as the Sun drivers will expect to see SPARC symbols
535 exported from the kernel. Failure to follow this warning will result
536 in a display lockup, which requires a hard reboot, when configuring
537 <application>Xorg</application> for the first time.</para></warning>
538
539 <para>Install the drivers by running the following commands for each
540 package:</para>
541
542<screen><userinput>./configure $XORG_CONFIG \
543 --with-xorg-module-dir=$XORG_PREFIX/lib/X11/modules &amp;&amp;
544make</userinput></screen>
545
546 <para>Now as the <systemitem class="username">root</systemitem>
547 user:</para>
548
549<screen><userinput role="root">make install</userinput></screen>
550
551 </sect3>
552
553 </sect2>
554
555 <sect2 role="configuration" id='xorg7-config'>
556 <title>Configuring Xorg</title>
557
558 <para>As the <systemitem class="username">root</systemitem> user ensure you
559 have executed <command>ldconfig</command> and
560 create the <filename>xorg.conf</filename> file with:</para>
561
562<screen><userinput>cd ~ &amp;&amp;
563Xorg -configure</userinput></screen>
564
565 <para>The screen will go black and you may hear some clicking of the monitor.
566 This command will create a file, <filename>xorg.conf.new</filename>, in your
567 home directory.</para>
568
569 <indexterm zone="xorg7 xorg7-config">
570 <primary sortas="e-etc-X11-xorg-conf">/etc/X11/xorg.conf</primary>
571 </indexterm>
572
573 <para>Edit <filename>xorg.conf.new</filename> to suit your system. The
574 details of the file are located in the xorg.conf man page. Some things
575 you may want to do are:</para>
576
577 <itemizedlist>
578 <listitem>
579 <para>Section "Files". Change the order of the font paths searched.
580 You may want to put 100dpi fonts ahead of 75dpi fonts if your system
581 normally comes up closer to 100 dots per inch. You may want to remove
582 some font directories completely.</para>
583 </listitem>
584 <listitem>
585 <para>Section "Module". If you are going to install NVidia
586 drivers, remove the "dri" line.</para>
587 </listitem>
588 <listitem>
589 <para>Sections "InputDevice". You may want to change the
590 keyboard autorepeat rate by adding
591 <option>Option "Autorepeat" "250 30"</option>.</para>
592 </listitem>
593 <listitem>
594 <para>Section "Monitor". Specify the <option>VertRefresh</option>
595 and <option>HorizSync</option> values if the system does not
596 automatically detect the monitor and its values.</para>
597 </listitem>
598 <listitem>
599 <para>Section "Device". You may want to set some of the options
600 available for your selected video driver. A description of the driver
601 parameters is in the man page for your driver.</para>
602 </listitem>
603 <listitem><para>Section "Screen". Add a DefaultDepth statement such as:
604 <option>DefaultDepth 24</option>. In the SubSection for your
605 default depth, add a modes line such as:
606 <option>Modes "1600x1200" "1280x1024" "1024x768"</option>. The first
607 mode listed will normally be the starting resolution.</para>
608 </listitem>
609 </itemizedlist>
610
611 <para>Test the system with:</para>
612
613<screen><userinput>X -config ~/xorg.conf.new</userinput></screen>
614
615 <para>You will only get a gray background with an X-shaped mouse cursor,
616 but it confirms the system is working. Exit with
617 <keycap>Control+Alt+Backspace</keycap>. If the system does not work, take
618 a look at <filename>/var/log/Xorg.0.log</filename> to see what went
619 wrong.</para>
620
621 <para>As the <systemitem class="username">root</systemitem> user, move
622 the configuration file to its final location:</para>
623
624<screen role="root"><userinput>mv ~/xorg.conf.new /etc/X11/xorg.conf</userinput></screen>
625
626 <para>As the <systemitem class="username">root</systemitem> user, create
627 <filename>.xinitrc</filename>:</para>
628
629<screen><userinput>cat &gt; ~/.xinitrc &lt;&lt; "EOF"
630<literal># Begin .xinitrc file
631xterm -g 80x40+0+0 &amp;
632xclock -g 100x100-0+0 &amp;
633twm</literal>
634EOF</userinput></screen>
635
636 <para>This provides an initial screen with a small clock that is
637 managed by a simple window manager, Tab Window Manager. For details of
638 <command>twm</command>, see the man page.</para>
639
640 <note>
641 <para>The above file is the default configuration for Xorg. Xorg's
642 distribution no longer includes <command>xterm</command>, and as such the
643 <command>startx</command> command will fail if you have not yet
644 installed <xref linkend="xterm2"/>.</para>
645 </note>
646
647 <indexterm zone="xorg7 xorg7-config">
648 <primary sortas="e-AA.xinitrc">~/.xinitrc</primary>
649 </indexterm>
650
651 <note>
652 <para>When needed, <application>Xorg</application> creates the directory
653 <filename class='directory'>/tmp/.ICE-unix</filename> if it does not
654 exist. If this directory is not owned by
655 <systemitem class="username">root</systemitem>,
656 <application>Xorg</application> delays startup by a few seconds and also
657 appends a warning to the logfile. This also affects startup of other
658 applications. To improve performance, it is advisable to manually create
659 the directory before <application>Xorg</application> uses it. Add the
660 file creation to <filename>/etc/sysconfig/createfiles</filename> that is
661 sourced by the <filename>/etc/rc.d/init.d/cleanfs</filename> startup
662 script.</para>
663
664<screen role="root"><userinput>cat &gt;&gt; /etc/sysconfig/createfiles &lt;&lt; "EOF"
665<literal>/tmp/.ICE-unix dir 1777 root root</literal>
666EOF</userinput></screen>
667 </note>
668
669 <indexterm zone="xorg7 xorg7-config">
670 <primary
671 sortas="e-etc-sysconfig-createfiles">/etc/sysconfig/createfiles</primary>
672 </indexterm>
673
674 <para>Start <application>X</application> with:</para>
675
676<screen><userinput>startx</userinput></screen>
677
678 <para>and a basic functional <application>X Window
679 System</application> should be displayed.</para>
680
681 <para>At this point, you should check out <xref linkend='x-setup'/> for
682 the necessary configuration to make <application>X</application> fully
683 functional. Additionally, you can have a look at <xref linkend='x-config'/>
684 for information on fine tuning your <application>X</application>
685 configuration.</para>
686
687 <para>For a list of the package contents and a description of the commands,
688 see the sections in the <xref linkend='xfree86-contents'/>.</para>
689
690 </sect2>
691
692</sect1>
Note: See TracBrowser for help on using the repository browser.