source: x/wm/xfce.xml@ e3c939cc

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.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 e3c939cc was 2f26d75, checked in by Randy McMurchy <randy@…>, 19 years ago

Added md5sum to XFce instructions

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

  • Property mode set to 100644
File size: 8.6 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY xfce-download-http "http://prdownloads.sourceforge.net/xfce/xfce-&xfce-version;-src.tar.bz2">
8 <!ENTITY xfce-download-ftp " ">
9 <!ENTITY xfce-md5sum "f49f4dbe575a1d67035e95b3c91e9977">
10 <!ENTITY xfce-size "18 MB">
11 <!ENTITY xfce-buildsize "224 MB">
12 <!ENTITY xfce-time "3.35 SBU">
13]>
14
15<sect1 id="xfce" xreflabel="XFce-&xfce-version;">
16<sect1info>
17<othername>$LastChangedBy$</othername>
18<date>$Date$</date>
19</sect1info>
20<?dbhtml filename="xfce.html" ?>
21<title>XFce-&xfce-version;</title>
22
23<sect2>
24<title>Introduction to <application>XFce</application></title>
25
26<para>The <application>XFce</application> package contains a lightweight
27desktop environment.</para>
28
29<sect3><title>Package information</title>
30<itemizedlist spacing='compact'>
31<listitem><para>Download (HTTP): <ulink
32url="&xfce-download-http;"/></para></listitem>
33<listitem><para>Download (FTP): <ulink
34url="&xfce-download-ftp;"/></para></listitem>
35<listitem><para>Download MD5 sum: &xfce-md5sum;</para></listitem>
36<listitem><para>Download size: &xfce-size;</para></listitem>
37<listitem><para>Estimated disk space required:
38&xfce-buildsize;</para></listitem>
39<listitem><para>Estimated build time:
40&xfce-time;</para></listitem></itemizedlist>
41</sect3>
42
43<sect3><title><application>XFce</application> dependencies</title>
44<sect4><title>Required</title>
45<para><xref linkend="gtk2"/> and
46<xref linkend="libxml2"/></para>
47</sect4>
48
49<sect4><title>Optional</title>
50<para><xref linkend="libgtkhtml"/> and
51<xref linkend="startup-notification"/></para>
52</sect4>
53</sect3>
54
55</sect2>
56
57<sect2>
58<title>Installation of <application>XFce</application></title>
59
60<para><application>XFce</application> now distributes as a
61<acronym>TAR</acronym> ball of base packages and module packages. These
62instructions will only cover the bare minimum to run the application. The
63remaining modules would all follow the same pattern which will soon become
64obvious.</para>
65
66<para>Install <application>XFce</application> by running the following
67commands:</para>
68
69<screen><userinput><command>cd src &amp;&amp;
70tar -zxf libxfce4util-&xfce-version;.tar.gz &amp;&amp;
71cd libxfce4util-&xfce-version; &amp;&amp;
72./configure --prefix=/usr &amp;&amp;
73make &amp;&amp;
74make install &amp;&amp;
75cd .. &amp;&amp;
76tar -zxf libxfcegui4-&xfce-version;.tar.gz &amp;&amp;
77cd libxfcegui4-&xfce-version; &amp;&amp;
78./configure --prefix=/usr &amp;&amp;
79make &amp;&amp;
80make install &amp;&amp;
81cd .. &amp;&amp;
82tar -zxf libxfce4mcs-&xfce-version;.tar.gz &amp;&amp;
83cd libxfce4mcs-&xfce-version; &amp;&amp;
84./configure --prefix=/usr &amp;&amp;
85make &amp;&amp;
86make install &amp;&amp;
87cd .. &amp;&amp;
88tar -zxf xfce-mcs-manager-&xfce-version;.tar.gz &amp;&amp;
89cd xfce-mcs-manager-&xfce-version; &amp;&amp;
90./configure --prefix=/usr &amp;&amp;
91make &amp;&amp;
92make install &amp;&amp;
93cd .. &amp;&amp;
94tar -zxf xfwm4-&xfce-version;.tar.gz &amp;&amp;
95cd xfwm4-&xfce-version; &amp;&amp;
96./configure --prefix=/usr &amp;&amp;
97make &amp;&amp;
98make install &amp;&amp;
99cd .. &amp;&amp;
100tar -zxf xfdesktop-&xfce-version;.tar.gz &amp;&amp;
101cd xfdesktop-&xfce-version; &amp;&amp;
102./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
103make &amp;&amp;
104make install &amp;&amp;
105cd .. &amp;&amp;
106tar -zxf xfce4-panel-&xfce-version;.tar.gz &amp;&amp;
107cd xfce4-panel-&xfce-version; &amp;&amp;
108./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
109make &amp;&amp;
110make install &amp;&amp;
111cd .. &amp;&amp;
112tar -zxf xfce-utils-&xfce-version;.tar.gz &amp;&amp;
113cd xfce-utils-&xfce-version; &amp;&amp;
114./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
115make &amp;&amp;
116make install</command></userinput></screen>
117
118<para>Modules not installed above are: dbh-1.0.15 (required for xffm),
119gtk-xfce-engine-2.1.9, xfcalendar-0.1.6, xfce-mcs-plugins, xfce4-iconbox,
120xfce4-mixer, xfce4-systray, xfce4-themes, xfce4-toys, xfce4-trigger-launcher,
121xffm, xffm-icons, xfprint and xfwm4-themes.</para>
122
123</sect2>
124
125<sect2>
126<title>Configuring <application>XFce</application></title>
127
128<sect3><title>Config files</title>
129<para><filename>~/.xinitrc</filename></para>
130</sect3>
131
132<sect3><title>Configuration Information</title>
133
134<para>Be sure to backup your current <filename>.xinitrc</filename> before
135proceeding.</para>
136
137<screen><userinput><command>cat &gt;&gt; ~/.xinitrc &lt;&lt; "EOF"</command>
138xfce-mcs-manager
139xfwm4 --daemon
140xftaskbar4 &amp;
141xfdesktop &amp;
142exec xfce4-panel
143<command>EOF</command></userinput></screen>
144
145</sect3>
146
147</sect2>
148
149<sect2>
150<title>Contents</title>
151
152<para>The <application>XFce</application> package contains
153<command>fgr</command>,
154<command>scramble</command>,
155<command>startxfce4</command>,
156<command>xfapps</command>,
157<command>xfapps4</command>,
158<command>xfbook</command>,
159<command>xfbook4</command>,
160<command>xfcalendar</command>,
161<command>xfce-mcs-manager</command>,
162<command>xfce-setting-show</command>,
163<command>xfce4-about</command>,
164<command>xfce4-iconbox</command>,
165<command>xfce4-panel</command>,
166<command>xfce4-tips</command>,
167<command>xfdesktop</command>,
168<command>xfdiff4</command>,
169<command>xffm</command>,
170<command>xffstab</command>,
171<command>xffstab4</command>,
172<command>xfglob4</command>,
173<command>xfhelp4</command>,
174<command>xflock4</command>,
175<command>xfmountdev4</command>,
176<command>xfprint-manager</command>,
177<command>xfprint4</command>,
178<command>xfrun4</command>,
179<command>xfsamba4</command>,
180<command>xftaskbar4</command>,
181<command>xfterm4</command>,
182<command>xftrash4</command>,
183<command>xftree4</command>,
184<command>xfwm4</command> and
185<filename class="libraryfile">libdbh</filename>,
186<filename class="libraryfile">libxfce4mcs</filename>,
187<filename class="libraryfile">libxfce4util</filename>,
188<filename class="libraryfile">libxfcegui4</filename>,
189<filename class="libraryfile">libxffm</filename> and
190<filename class="libraryfile">libxfprint</filename> libraries.
191</para>
192
193</sect2>
194
195<sect2><title>Description</title>
196
197<sect3><title>fgr</title>
198<para><command>fgr</command> is a file content search engine for
199<command>xffm</command>.</para></sect3>
200
201<sect3><title>xfce-mce-manager</title>
202<para><command>xfce-mce-manager</command> is the settings manager for
203<application>XFce</application>.</para></sect3>
204
205<sect3><title>xfce4-about</title>
206<para><command>xfce4-about</command> displays the about box.</para></sect3>
207
208<sect3><title>xfce-setting-show</title>
209<para><command>xfce_setting-show</command> displays the settings for
210<application>XFce</application>.</para></sect3>
211
212<sect3><title>xfce4-panel</title>
213<para><command>xfce4-panel</command> is the panel manager for
214<application>XFce</application>. It contains the launcher, clock, mail
215check, desktop switcher and separator programs.</para></sect3>
216
217<sect3><title>xfdesktop</title>
218<para><command>xfdesktop </command> is the desktop manager
219for <application>XFce</application>.</para></sect3>
220
221<sect3><title>xfhelp4</title>
222<para><command>xfhelp4</command> is script that launches a
223<acronym>HTML</acronym> browser to display online documentation.</para></sect3>
224
225<sect3><title>xflock4</title>
226<para><command>xflock4</command> is a script used to lock the current screen
227during drag and drop actions.</para></sect3>
228
229<sect3><title>xfmountdev4</title>
230<para><command>xfmountdev4</command> mounts a device on the specified mount
231point and launches <command>xftree4</command>, then unmounts the device
232when <command>xftree4</command> finishes.</para></sect3>
233
234<sect3><title>xfrun4</title>
235<para><command>xfrun4</command> is the program launcher for
236<application>XFce</application>.</para></sect3>
237
238<sect3><title>xfsamba4</title>
239<para><command>xfsamba4</command> is <application>Samba</application> front end
240for <application>XFce</application>.</para></sect3>
241
242<sect3><title>xftaskbar4</title>
243<para><command>xftaskbar4</command> is the taskbar manager for
244<application>XFce</application>.</para></sect3>
245
246<sect3><title>xfterm4</title>
247<para><command>xfterm4</command> is a small terminal wrapper to be used as a
248drag and drop action for the <application>XFce</application> front panel.
249</para></sect3>
250
251<sect3><title>xftrash4</title>
252<para><command>xftrash4</command> is a small script to be used as a drag and
253drop action for the <application>XFce</application> front panel.</para></sect3>
254
255<sect3><title>xftree4</title>
256<para><command>xftree4</command> is the file manager for
257<application>XFce</application>.</para></sect3>
258
259<sect3><title>xfwm4</title>
260<para><command>xfwm4</command> is a window manager for
261<application>X11</application>.</para></sect3>
262
263</sect2>
264
265</sect1>
266
Note: See TracBrowser for help on using the repository browser.