Add a section on desktop environments / window managers.

Specifically, talk about GNOME and KDE for now.

Submitted by:	Valentino Vaschetto <valentino.vaschetto@windriver.com>
This commit is contained in:
Murray Stokely 2001-06-22 22:00:27 +00:00
parent 5a583aa361
commit 3339f9ab20
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=9673

View file

@ -1,7 +1,7 @@
<!--
The FreeBSD Documentation Project
$FreeBSD: doc/en_US.ISO8859-1/books/handbook/x11/chapter.sgml,v 1.16 2001/06/13 11:36:49 tom Exp $
$FreeBSD: doc/en_US.ISO8859-1/books/handbook/x11/chapter.sgml,v 1.17 2001/06/21 17:21:01 murray Exp $
-->
<chapter id="x11">
@ -1601,6 +1601,116 @@ DisplayManager.requestPort: 0
manual page.</para>
</sect2>
</sect1>
<sect1 id="x11-wm">
<title>Desktop Environments</title>
<para><emphasis>Written by &a.logo;, June 2001</emphasis></para>
<para>This section describes the different desktop environments
available for X-Windows on FreeBSD. For our purposes a "desktop
environment" will mean anything ranging from a simple window
manager, to a complete suite of desktop applications such as KDE
or GNOME.</para>
<sect2 id="x11-wm-gnome">
<title>GNOME</title>
<sect3 id="x11-wm-gnome-about">
<title>About GNOME</title>
<para>GNOME is a user-friendly desktop environment that
enables users to easily use and configure their computers.
GNOME includes a panel (for starting applications and displaying
status), a desktop (where data and applications can be placed),
a set of standard desktop tools and applications, and a set of
conventions that make it easy for applications to cooperate and
be consistent with each other. Users of other operating systems
or environments should feel right at home using the powerful
graphics-driven environment that GNOME provides.</para>
</sect3>
<sect3 id="x11-wm-gnome-install">
<title>Installing GNOME</title>
<para>To install GNOME from the network, simply type:</para>
<screen>&prompt.root; <userinput>pkg_add -r gnome</userinput></screen>
<para>If you would prefer to build GNOME from source, then use
the ports tree:</para>
<screen>&prompt.root; <userinput>cd /usr/ports/x11/gnome</userinput>
&prompt.root; <userinput>make install clean</userinput></screen>
<para>Once GNOME is installed, we must have the X server start
GNOME instead of a default window mananger. If you have
already customized your <filename>.xinitrc</filename> file
then you should simply replace the line that starts your
current window manager with one that starts
<filename>/usr/X11R6/bin/gnome-wm</filename> instead. If
you haven't added anything special to your configuration
file, then it is enough to simply type:</para>
<screen>&prompt.root; <userinput>echo "/usr/X11R6/bin/gnome-wm" > ~/.xinirc</userinput></screen>
<para>That's it. Now just type 'startx' and you will be in the
GNOME desktop environment.</para>
</sect3>
</sect2>
<sect2 id="x11-wm-kde2">
<title>KDE2</title>
<sect3 id="x11-wm-kde2-about">
<title>About KDE2</title>
<para>KDE is an easy to use contemporary desktop environment.
Some of the things that KDE brings to the user are:</para>
<itemizedlist>
<listitem><para>A beautiful contemporary desktop</para></listitem>
<listitem><para>A desktop exhibiting complete network transparency</para></listitem>
<listitem><para>An integrated help system allowing for convenient,
consistent access to help on the use of the KDE desktop and its
applications</para></listitem>
<listitem><para>Consistent look and feel of all KDE applications</para></listitem>
<listitem><para>Standardized menu and toolbars, keybindings, color-schemes, etc.</para></listitem>
<listitem><para>Internationalization: KDE is available in more than 40 languages</para></listitem>
<listitem><para>Centralized consisted dialog driven desktop configuration</para></listitem>
<listitem><para>A great number of useful KDE applications</para></listitem>
</itemizedlist>
<para>KDE has an office application suite based on KDE's
KParts technology consisting of a spread-sheet, a
presentation application, an organizer, a news client and
more. KDE is also comes with a web browser called Konqeuror,
which represents already a solid competitor to other
existing web browsers on Unix systems. More information on
KDE can be found on the <ulink url="http://www.kde.org">KDE
website</ulink></para>
</sect3>
<sect3 id="x11-wm-kde2-install">
<title>Installing KDE2</title>
<para>At the time this was written, a package for kde2 doesn't
exist yet. No problem! We'll just use the ports to install
it. To install KDE2, do this:</para>
<screen>&prompt.root; <userinput>cd /usr/ports/x11/kde2</userinput>
&prompt.root; <userinput>make install clean</userinput></screen>
<para>That fetched all the necessary files from the internet,
compiled kde2, installed kde2, and cleaned up after itself
after the install.</para>
<para>Now you're going to have to tell the X server to launch
kde2 instead of a default window manager. Do this by typing
this:</para>
<screen>&prompt.root; <userinput>echo "/usr/X11R6/bin/startkde" > ~/.xinitrc</userinput></screen>
<para>Now everytime you go into X-Windows, kde2 will be your
desktop.</para>
</sect3>
</sect2>
</sect1>
</chapter>
<!--