seperating para and screen sections

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@1223 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Larry Lawrence 2003-09-27 18:46:10 +00:00
parent 009b52f588
commit a75063d4ec
70 changed files with 207 additions and 198 deletions

View File

@ -14,9 +14,9 @@
man page for <filename>muttrc</filename> is a good starting place.</para>
<para>In order to utilize <application>GnuPG</application>, use the following
command:
command:</para>
<screen><userinput><command>cat /usr/share/doc/mutt/samples/gpg.rc &gt;&gt;
~/.muttrc</command></userinput></screen></para>
~/.muttrc</command></userinput></screen>
</sect3>
</sect2>

View File

@ -2,13 +2,13 @@
<title>Installation of <application>Mutt</application></title>
<para><application>Mutt</application> requires a group named 'mail'. You can
add this group, if it does not exist, with this command:
<screen><userinput><command>groupadd mail</command></userinput></screen></para>
add this group, if it does not exist, with this command:</para>
<screen><userinput><command>groupadd mail</command></userinput></screen>
<para>If you did not install a <acronym>MTA</acronym>, such as <xref
linkend="postfix"/> or <xref linkend="sendmail"/>, you need to modify the
ownership of <filename>/var/mail</filename> with this command:
<screen><userinput><command>chgrp mail /var/mail</command></userinput></screen></para>
ownership of <filename>/var/mail</filename> with this command:</para>
<screen><userinput><command>chgrp mail /var/mail</command></userinput></screen>
<para>Install <application>Mutt</application> by running the following commands:</para>

View File

@ -14,7 +14,7 @@
created. Create the <filename>$HOME/.jnewsrc</filename> file with the following
command:</para>
<para><screen><userinput><command>slrn -f $HOME/.jnewsrc --create</command></userinput></screen></para>
<screen><userinput><command>slrn -f $HOME/.jnewsrc --create</command></userinput></screen>
</sect3>

View File

@ -3,9 +3,9 @@
<para>Install <application>slrn</application> by running the following commands:</para>
<para><screen><userinput><command>./configure --prefix=/usr --with-slrnpull &amp;&amp;
<screen><userinput><command>./configure --prefix=/usr --with-slrnpull &amp;&amp;
make LDFLAGS="-ldl" &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -3,8 +3,8 @@
<para>Install <application>Nmap</application> by running the following commands:</para>
<para><screen><userinput><command>./configure --prefix=/usr &amp;&amp;
<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -3,8 +3,8 @@
<para>Install <application>Whois</application> by running the following commands:</para>
<para><screen><userinput><command>make &amp;&amp;
make prefix=/usr install</command></userinput></screen></para>
<screen><userinput><command>make &amp;&amp;
make prefix=/usr install</command></userinput></screen>
</sect2>

View File

@ -1,5 +1,5 @@
<sect2>
<title>Configuring WvDial</title>
<title>Configuring <application>WvDial</application></title>
<sect3><title>Config files</title>
<para><filename>/etc/wvdial.conf</filename>,
@ -7,15 +7,15 @@
<sect3><title>Configuration Information</title>
<para><screen><userinput><command>touch /etc/wvdial.conf &amp;&amp;
<screen><userinput><command>touch /etc/wvdial.conf &amp;&amp;
wvdialconf /etc/wvdial.conf</command></userinput></screen>
<command>wvdialconf</command> will test that you have a working modem
<para><command>wvdialconf</command> will test that you have a working modem
and try to determine it's exact setup. You will then need to enter your
<acronym>ISP</acronym>'s phone number, login name and password into the
<filename>/etc/wvdial.conf</filename> file.</para>
<para>You then start wvdial with:
<screen><userinput><command>wvdial</command></userinput></screen></para>
<para>You then start wvdial with:</para>
<screen><userinput><command>wvdial</command></userinput></screen>
<para>For more information examine the wvdialconf, wvdial.conf and wvdial man pages.</para>

View File

@ -72,14 +72,14 @@ esac
<command>EOF
chmod 755 /etc/rc.d/init.d/adsl</command></userinput></screen>
<para>Now create the necessary symlinks:
<para>Now create the necessary symlinks:</para>
<screen><userinput><command>ln -sf ../init.d/adsl /etc/rc.d/rc0.d/K49adsl &amp;&amp;
ln -sf ../init.d/adsl /etc/rc.d/rc1.d/K49adsl &amp;&amp;
ln -sf ../init.d/adsl /etc/rc.d/rc2.d/K49adsl &amp;&amp;
ln -sf ../init.d/adsl /etc/rc.d/rc3.d/S24adsl &amp;&amp;
ln -sf ../init.d/adsl /etc/rc.d/rc4.d/S24adsl &amp;&amp;
ln -sf ../init.d/adsl /etc/rc.d/rc5.d/S24adsl &amp;&amp;
ln -sf ../init.d/adsl /etc/rc.d/rc6.d/K49adsl</command></userinput></screen></para>
ln -sf ../init.d/adsl /etc/rc.d/rc6.d/K49adsl</command></userinput></screen>
</sect3>

View File

@ -9,7 +9,7 @@ documentation in <filename class="directory">/usr/share/doc/proftpd</filename>
and consult the website at <ulink url="http://www.proftpd.net/"/>
for example configurations.</para>
<para><screen><userinput><command>cat &gt; /etc/proftpd.conf &lt;&lt; "EOF"</command>
<screen><userinput><command>cat &gt; /etc/proftpd.conf &lt;&lt; "EOF"</command>
# This is a basic ProFTPD configuration file
# It establishes a single server and a single anonymous login.
@ -60,12 +60,12 @@ Group proftpd
DenyAll
&lt;/Limit&gt;
&lt;/Anonymous&gt;
<command>EOF</command></userinput></screen></para></sect3>
<command>EOF</command></userinput></screen></sect3>
<sect3><title>proftpd init.d script</title>
<para><screen><userinput><command>cat &gt; /etc/rc.d/init.d/proftpd &lt;&lt; "EOF"</command>
<screen><userinput><command>cat &gt; /etc/rc.d/init.d/proftpd &lt;&lt; "EOF"</command>
#!/bin/sh
# Begin $rc_base/init.d/proftpd
@ -109,10 +109,11 @@ esac
# End $rc_base/init.d/proftpd
<command>EOF
chmod 755 /etc/rc.d/init.d/proftpd</command></userinput></screen></para>
chmod 755 /etc/rc.d/init.d/proftpd</command></userinput></screen>
<para>Create the symbolic links to this file in the relevant <filename
class="directory">rc.d</filename> directories with the following commands:
class="directory">rc.d</filename> directories with the following
commands:</para>
<screen><userinput><command>cd /etc/rc.d/init.d &amp;&amp;
ln -sf ../init.d/proftpd ../rc0.d/K50proftpd &amp;&amp;
ln -sf ../init.d/proftpd ../rc1.d/K50proftpd &amp;&amp;
@ -120,7 +121,7 @@ ln -sf ../init.d/proftpd ../rc2.d/K50proftpd &amp;&amp;
ln -sf ../init.d/proftpd ../rc3.d/S50proftpd &amp;&amp;
ln -sf ../init.d/proftpd ../rc4.d/S50proftpd &amp;&amp;
ln -sf ../init.d/proftpd ../rc5.d/S50proftpd &amp;&amp;
ln -sf ../init.d/proftpd ../rc6.d/K50proftpd</command></userinput></screen></para>
ln -sf ../init.d/proftpd ../rc6.d/K50proftpd</command></userinput></screen>
</sect3>

View File

@ -4,17 +4,17 @@
<para>For security reasons, running <application>ProFTPD</application>
as an unpriviledged user and group is encouraged.</para>
<para><screen><userinput><command>groupadd proftpd &amp;&amp;
<screen><userinput><command>groupadd proftpd &amp;&amp;
useradd -c proftd -d /home/ftp -g proftpd -s /bin/false proftpd</command>
</userinput></screen></para>
</userinput></screen>
<para>Install ProFTPD by running the following commands:</para>
<para>Install <application>ProFTPD</application> by running the following commands:</para>
<para><screen><userinput><command>install_user=proftpd install_group=proftpd \
<screen><userinput><command>install_user=proftpd install_group=proftpd \
&nbsp;&nbsp;&nbsp;./configure --prefix=/usr --sysconfdir=/etc \
&nbsp;&nbsp;&nbsp;--localstatedir=/var &amp;&amp;
make &amp;&amp;
make install </command></userinput></screen></para>
make install </command></userinput></screen>
</sect2>

View File

@ -1,15 +1,16 @@
<sect2>
<title>Installation of <application>expat</application></title>
<para>The <filename>expat.h</filename> declares XML_Status after its first use. This is corrected by the following patch:
<para>The <filename>expat.h</filename> declares XML_Status after its
first use. This is corrected by the following patch:</para>
<screen><userinput><command>patch -Np1 -i ../expat-1.95.6.patch</command></userinput></screen></para>
<screen><userinput><command>patch -Np1 -i ../expat-1.95.6.patch</command></userinput></screen>
<para>Install <application>expat</application> by running the following commands:</para>
<para><screen><userinput><command>./configure --prefix=/usr &amp;&amp;
<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -3,9 +3,9 @@
<para>Install <application>glib</application> by running the following commands:</para>
<para><screen><userinput><command>./configure --prefix=/usr &amp;&amp;
<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -3,9 +3,9 @@
<para>Install <application>popt</application> by running the following commands:</para>
<para><screen><userinput><command>./configure --prefix=/usr &amp;&amp;
<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -3,12 +3,12 @@
<para>Install <application>slang</application> by running the following commands:</para>
<para><screen><userinput><command>./configure --prefix=/usr &amp;&amp;
<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
make &amp;&amp;
make install &amp;&amp;
make elf &amp;&amp;
make install-elf &amp;&amp;
make install-links &amp;&amp;
chmod 755 /usr/lib/libslang.so.&slang-version;</command></userinput></screen></para>
chmod 755 /usr/lib/libslang.so.&slang-version;</command></userinput></screen>
</sect2>

View File

@ -3,9 +3,9 @@
<para>Install <application>libjpeg</application> by running the following commands:</para>
<para><screen><userinput><command>./configure --enable-static --enable-shared --prefix=/usr &amp;&amp;
<screen><userinput><command>./configure --enable-static --enable-shared --prefix=/usr &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -3,10 +3,10 @@
<para>Install <application>libtiff</application> by running the following commands:</para>
<para><screen><userinput><command>./configure --prefix=/usr --noninteractive \
<screen><userinput><command>./configure --prefix=/usr --noninteractive \
--with-DIR_MAN=/usr/share/man &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -11,7 +11,7 @@ make install</command></userinput></screen>
<para>Below are installation instructions for modules that happen to be
broken at the present time.</para>
<para>Gtk-Perl-&Gtk-Perl-version;:
<para>Gtk-Perl-&Gtk-Perl-version;:</para>
<screen><userinput><command>perl Makefile.PL --without-guessing &amp;&amp;
make
cp Gtk/Makefile Gtk/Makefile.bak &amp;&amp;
@ -19,7 +19,7 @@ sed '/^OBJECT/s/xs/./g' Gtk/Makefile.bak > Gtk/Makefile &amp;&amp;
cp Gtk/Makefile Gtk/Makefile.bak &amp;&amp;
sed '/^OBJECT/s/build/./g' Gtk/Makefile.bak > Gtk/Makefile &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -3,9 +3,9 @@
<para>Install <application>Python</application> by running the following commands:</para>
<para><screen><userinput><command>./configure --prefix=/usr --enable-shared &amp;&amp;
<screen><userinput><command>./configure --prefix=/usr --enable-shared &amp;&amp;
make &amp;&amp;
make install </command></userinput></screen></para>
make install </command></userinput></screen>
</sect2>

View File

@ -61,7 +61,7 @@ esac
chmod 755 /etc/rc.d/init.d/gpm</command></userinput></screen>
<para>You then need to create symbolic links to this file in the
relevant <filename>rc.d</filename> directories. For example:
relevant <filename>rc.d</filename> directories. For example:</para>
<screen><userinput><command>cd /etc/rc.d/init.d &amp;&amp;
ln -sf ../init.d/gpm ../rc0.d/K10gpm &amp;&amp;
ln -sf ../init.d/gpm ../rc1.d/K10gpm &amp;&amp;
@ -69,7 +69,8 @@ ln -sf ../init.d/gpm ../rc2.d/K10gpm &amp;&amp;
ln -sf ../init.d/gpm ../rc3.d/S70gpm &amp;&amp;
ln -sf ../init.d/gpm ../rc4.d/S70gpm &amp;&amp;
ln -sf ../init.d/gpm ../rc5.d/S70gpm &amp;&amp;
ln -sf ../init.d/gpm ../rc6.d/K10gpm</command></userinput></screen></para></sect3>
ln -sf ../init.d/gpm ../rc6.d/K10gpm</command></userinput></screen>
</sect3>
<sect3><title>Config files</title>
<para><filename>/etc/sysconfig/mouse</filename>
@ -78,8 +79,8 @@ it uses. To create this file, run the following:</para>
<screen><userinput><command>cat &gt; /etc/sysconfig/mouse &lt;&lt; "EOF"</command>
# start /etc/sysconfig/mouse
MDEVICE=yourdevice
PROTOCOL=yourprotocol
MDEVICE=<replaceable>[yourdevice]</replaceable>
PROTOCOL=<replaceable>[yourprotocol]</replaceable>
# end /etc/sysconfig/mouse
<command>EOF</command></userinput></screen>
</sect3>

View File

@ -1,8 +1,8 @@
<sect2>
<title>Configuring <application>pkgconfig</application></title>
<para>Add to your system or personal profile:
<screen><userinput><command>export PKG_CONFIG_PATH=/usr/X11R6/lib/pkgconfig</command></userinput></screen></para>
<para>Add to your system or personal profile:</para>
<screen><userinput><command>export PKG_CONFIG_PATH=/usr/X11R6/lib/pkgconfig</command></userinput></screen>
<para>The default settings for <envar>PKG_CONFIG_PATH</envar> are
<filename>/lib/pkgconfig</filename>,

View File

@ -3,9 +3,9 @@
<para>Install <application>pkgconfig</application> by running the following commands:</para>
<para><screen><userinput><command>./configure --prefix=/usr &amp;&amp;
<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -24,8 +24,9 @@ additional edits required by the second option are covered on the
pre-installation page.</para>
<para>If you choose the second option, removal of GNOME-2.2 is as easy
as removing the edits from the pre-installation page and issueing the following command:
<screen><userinput><command>rm /opt/gnome-&gnome-version; -r </command></userinput></screen></para>
as removing the edits from the pre-installation page and issueing the
following command:</para>
<screen><userinput><command>rm /opt/gnome-&gnome-version; -r </command></userinput></screen>
<para>If your system was completely built per <acronym>LFS</acronym> and
<acronym>BLFS</acronym>

View File

@ -3,10 +3,10 @@
<para>Install <application>bonobo-activation</application> by running the following commands:</para>
<para><screen><userinput><command>./configure --prefix=$GNOME_PREFIX --libexecdir=$GNOME_PREFIX/sbin \
<screen><userinput><command>./configure --prefix=$GNOME_PREFIX --libexecdir=$GNOME_PREFIX/sbin \
--sysconfdir=/etc/gnome --disable-gtk-doc &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -3,9 +3,9 @@
<para>Install <application>intltool</application> by running the following commands:</para>
<para><screen><userinput><command>./configure --prefix=/usr --mandir=/usr/share/man &amp;&amp;
<screen><userinput><command>./configure --prefix=/usr --mandir=/usr/share/man &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -3,10 +3,10 @@
<title>pre-installation configuration</title>
<para>Set an Environment variable to resolve the prefix destination.</para>
<para>If GNOME is your desktop of choice:
<para>If GNOME is your desktop of choice:</para>
<screen><userinput><command>export GNOME_PREFIX=/usr</command></userinput></screen>
If you want to try-out GNOME:
<screen><userinput><command>export GNOME_PREFIX=/opt/gnome-&gnome-version;</command></userinput></screen></para>
<para>If you want to try-out GNOME:</para>
<screen><userinput><command>export GNOME_PREFIX=/opt/gnome-&gnome-version;</command></userinput></screen>
<para>The try-out group will also need to make all the following
configuration changes:</para>

View File

@ -3,9 +3,9 @@
<para>Install <application>libIDL</application> by running the following commands:</para>
<para><screen><userinput><command>./configure --prefix=$GNOME_PREFIX &amp;&amp;
<screen><userinput><command>./configure --prefix=$GNOME_PREFIX &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -3,9 +3,9 @@
<para>Install <application>linc</application> by running the following commands:</para>
<para><screen><userinput><command>./configure --prefix=$GNOME_PREFIX --with-openssl --disable-gtk-doc &amp;&amp;
<screen><userinput><command>./configure --prefix=$GNOME_PREFIX --with-openssl --disable-gtk-doc &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -16,8 +16,8 @@ auth required pam_nologin.so
account required pam_unix.so
password required pam_unix.so
session required pam_unix.so
<command>EOF</command></userinput></screen>
<screen><userinput><command>cat &gt; /etc/pam.d/gdm-autologin &lt;&lt; "EOF"</command>
<command>EOF
cat &gt; /etc/pam.d/gdm-autologin &lt;&lt; "EOF"</command>
auth required pam_env.so
auth required pam_nologin.so
auth required pam_permit.so
@ -29,7 +29,9 @@ session required pam_unix.so
<para><command>gdm</command> can be tested by executing it from a root console.</para>
<para>To automate the running of <command>gdm</command>, use the following command to
create the init.d script if your GNOME_PREFIX=/opt/gnome-&gnome-version;. The fully qualified paths can be removed for GNOME_PREFIX=/usr:
create the init.d script if your
GNOME_PREFIX=/opt/gnome-&gnome-version;. The fully qualified paths can
be removed for GNOME_PREFIX=/usr:</para>
<screen><userinput><command>cat &gt; /etc/rc.d/init.d/gdm &lt;&lt; "EOF"</command>
#!/bin/bash
# Begin $rc_base/init.d/gdm
@ -71,11 +73,11 @@ esac
# End $rc_base/init.d/gdm
<command>EOF
chmod 755 /etc/rc.d/init.d/gdm</command></userinput></screen></para>
chmod 755 /etc/rc.d/init.d/gdm</command></userinput></screen>
<para>Create the symbolic links to this file in the relevant
<filename>rc.d</filename>
directory with the following commands:
directory with the following commands:</para>
<screen><userinput><command>cd /etc/rc.d/init.d &amp;&amp;
ln -sf ../init.d/gdm ../rc0.d/K05gdm &amp;&amp;
ln -sf ../init.d/gdm ../rc1.d/K05gdm &amp;&amp;
@ -83,13 +85,13 @@ ln -sf ../init.d/gdm ../rc2.d/K05gdm &amp;&amp;
ln -sf ../init.d/gdm ../rc3.d/K05gdm &amp;&amp;
ln -sf ../init.d/gdm ../rc4.d/K05gdm &amp;&amp;
ln -sf ../init.d/gdm ../rc5.d/S95gdm &amp;&amp;
ln -sf ../init.d/gdm ../rc6.d/K05gdm</command></userinput></screen></para>
ln -sf ../init.d/gdm ../rc6.d/K05gdm</command></userinput></screen>
<para>To autostart with a graphical login, edit
<filename>/etc/inittab</filename> so that the line reading
<filename>/etc/inittab</filename> so that the line reading</para>
<screen>id:3:initdefault:</screen>
is changed to
<screen>id:5:initdefault:</screen></para>
<para>is changed to</para>
<screen>id:5:initdefault:</screen>
</sect3>

View File

@ -4,13 +4,13 @@
<para>The <command>configure</command> script does not correctly
interpret that <application>libxml</application>-&libxml-version; is
newer than <application>libxml</application>-1.8.8. This can be solved
by building <filename>xmlConf.sh</filename> with this command:
by building <filename>xmlConf.sh</filename> with this command:</para>
<screen><userinput><command>cat &gt; /opt/gnome/lib/xmlConf.sh &lt;&lt; EOF</command>
XML_LIBDIR="-L/usr/lib"
XML_LIBS="-lxml"
XML_INCLUDEDIR="-I/usr/include/gnome-xml"
MODULE_VERSION=xml-&libxml-version;
<command>EOF</command></userinput></screen></para>
<command>EOF</command></userinput></screen>
<para>Install <application>gnome-print</application> by running the following
commands:</para>

View File

@ -34,8 +34,8 @@ linkend="GLib2"/> and <xref linkend="libmad"/></para></sect4>
<title>Installation of <application>aRts</application></title>
<para>Before starting the build, ensure you have the
<envar>QTDIR</envar> environment variable set:
<screen><userinput><command>export QTDIR=/opt/qt</command></userinput></screen></para>
<envar>QTDIR</envar> environment variable set:</para>
<screen><userinput><command>export QTDIR=/opt/qt</command></userinput></screen>
<para>Install <application>aRts</application> by running the
following commands:</para>
@ -82,7 +82,7 @@ and then set up by changing the link as this command does.
<para>The library directory <filename class="directory">/opt/kde/lib</filename>
should appear in <filename>/etc/ld.so.conf</filename>
so that ldd can find the shared libraries. The following command will add it
if it is missing:
if it is missing:</para>
<screen><userinput><command>cat &gt;&gt; /etc/ld.so.conf &lt;&lt; "EOF"
# Begin kde addition to /etc/ld.so.conf
@ -91,7 +91,7 @@ if it is missing:
# End kde addition
EOF
ldconfig</command></userinput></screen></para>
ldconfig</command></userinput></screen>
</sect3>

View File

@ -4,18 +4,18 @@
<para>
First add <filename class="directory">/opt/kde/bin</filename> to
your <envar>PATH</envar> environment variable:
your <envar>PATH</envar> environment variable:</para>
<screen><userinput><command>export PATH=$PATH:/opt/kde/bin</command></userinput></screen>
</para>
<para>
Then create an <filename>.xinitrc</filename> file to start <acronym>KDE</acronym>:
Then create an <filename>.xinitrc</filename> file to start
<acronym>KDE</acronym>:</para>
<screen><userinput><command>echo "exec startkde" &gt; ~/.xinitrc</command></userinput></screen>
and ensure all libraries can be found with:
<para>and ensure all libraries can be found with:</para>
<screen><userinput><command>ldconfig</command></userinput></screen>
</para>
<para>At this point you can bring up <acronym>KDE</acronym> with:
<screen><userinput><command>startx</command></userinput></screen></para>
<para>At this point you can bring up <acronym>KDE</acronym> with:</para>
<screen><userinput><command>startx</command></userinput></screen>
</sect1>

View File

@ -28,11 +28,11 @@ and scripts for some <acronym>KDE</acronym> applications.</para>
<sect2>
<title>Installation of <application>kdeaddons</application></title>
<para>Install <application>kdeaddons</application> with:
<para>Install <application>kdeaddons</application> with:</para>
<screen><userinput><command>./configure --prefix=&kde-dir; --disable-debug \
--disable-dependency-tracking &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -28,11 +28,11 @@ linkend="Linux_PAM"/></para></sect4>
<sect2>
<title>Installation of <application>kdeadmin</application></title>
<para>Install <application>kdeadmin</application> with:
<para>Install <application>kdeadmin</application> with:</para>
<screen><userinput><command>./configure --prefix=&kde-dir; --disable-debug \
--disable-dependency-tracking --with-shadow &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -29,11 +29,11 @@ themes, screensaver, sounds, wallpapers and widget styles for
<sect2>
<title>Installation of <application>kdeartwork</application></title>
<para>Install <application>kdeartwork</application> with:
<para>Install <application>kdeartwork</application> with:</para>
<screen><userinput><command>./configure --prefix=&kde-dir; --disable-debug \
--disable-dependency-tracking &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -33,15 +33,15 @@ linkend="Linux_PAM"/></para></sect4>
<title>Installation of <application>kdebase</application></title>
<para>Check to see if <filename class="libraryfile">/lib/libmisc.la</filename>
exists. If not, run:
exists. If not, run:</para>
<screen><userinput><command>ln -sf /usr/lib/libmisc.la /lib/libmisc.la</command>
</userinput></screen></para>
</userinput></screen>
<para>Install kdebase with:
<para>Install kdebase with:</para>
<screen><userinput><command>./configure --prefix=&kde-dir; --disable-debug \
--disable-dependency-tracking --disable-lametest --with-shadow &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -1,9 +1,9 @@
<sect1 id="kde-bindings" xreflabel="kde-bindings-&kde-version;">
<title>Installing kde-bindings</title>
<para><screen>Estimated build disk space: ??? MB
<screen>Estimated build disk space: ??? MB
Estimated installed space: ?? MB
Package size: &kde-bindings-size;
Estimated build time: ?? min</screen></para>
Estimated build time: ?? min</screen>
<para>NOT YET DONE</para>

View File

@ -25,11 +25,11 @@
<sect2>
<title>Installation of <application>kdeedu</application></title>
<para>Install <application>kdeedu</application> with:
<para>Install <application>kdeedu</application> with:</para>
<screen><userinput><command>./configure --prefix=&kde-dir; --disable-debug \
--disable-dependency-tracking &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -27,11 +27,11 @@
<sect2>
<title>Installation of <application>kdegames</application></title>
<para>Install <application>kdegames</application> with:
<para>Install <application>kdegames</application> with:</para>
<screen><userinput><command>./configure --prefix=&kde-dir; --disable-debug \
--disable-dependency-tracking &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -27,11 +27,11 @@
<sect2>
<title>Installation of <application>kdegraphics</application></title>
<para>Install <application>kdegraphics</application> with:
<para>Install <application>kdegraphics</application> with:</para>
<screen><userinput><command>./configure --prefix=&kde-dir; --disable-debug \
--disable-dependency-tracking &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -42,11 +42,11 @@ work as described in the following sections, but not all KDE packages
have been validated.</para></warning>
-->
<para>Install <application>kdelibs</application> with:
<para>Install <application>kdelibs</application> with:</para>
<screen><userinput><command>./configure --prefix=&kde-dir; --disable-debug \
--disable-dependency-tracking --with-alsa --enable-fast-malloc=full &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -25,11 +25,11 @@
<sect2>
<title>Installation of <application>kdemultimedia</application></title>
<para>Install <application>kdemultimedia</application> with:
<para>Install <application>kdemultimedia</application> with:</para>
<screen><userinput><command>./configure --prefix=&kde-dir; --disable-debug \
--disable-dependency-tracking --with-arts-alsa &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -25,11 +25,11 @@
<sect2>
<title>Installation of <application>kdenetwork</application></title>
<para>Install <application>kdenetwork</application> with:
<para>Install <application>kdenetwork</application> with:</para>
<screen><userinput><command>./configure --prefix=&kde-dir; --disable-debug \
--disable-dependency-tracking &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -29,11 +29,11 @@ url="http://www.slac.com/pilone/kpilot_home">pilot-link</ulink>
<sect2>
<title>Installation of <application>kdepim</application></title>
<para>Install <application>kdepim</application> with:
<para>Install <application>kdepim</application> with:</para>
<screen><userinput><command>./configure --prefix=&kde-dir; --disable-debug \
--disable-dependency-tracking &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -1,9 +1,9 @@
<sect1 id="kde-sdk" xreflabel="kde-sdk-&kde-version;">
<title>Installing kde-sdk</title>
<para><screen>Estimated build disk space: ??? MB
<screen>Estimated build disk space: ??? MB
Estimated installed space: ?? MB
Package size: &kde-sdk-size;
Estimated build time: ?? min</screen></para>
Estimated build time: ?? min</screen>
<para>NOT YET DONE</para>

View File

@ -25,11 +25,11 @@
<sect2>
<title>Installation of <application>kdetoys</application></title>
<para>Install <application>kdetoys</application> with:
<para>Install <application>kdetoys</application> with:</para>
<screen><userinput><command>./configure --prefix=&kde-dir; --disable-debug \
--disable-dependency-tracking &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -25,11 +25,11 @@
<sect2>
<title>Installation of <application>kdeutils</application></title>
<para>Install <application>kdeutils</application> with:
<para>Install <application>kdeutils</application> with:</para>
<screen><userinput><command>./configure --prefix=&kde-dir; --disable-debug \
--disable-dependency-tracking &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -7,13 +7,13 @@ the kernel source directory:</para>
<screen><userinput><command>patch -Np1 -i ../packet-2.4.20.patch</command></userinput></screen>
<para>In the kernel configuration, check your setting with those listed
here:
here:</para>
<screen>Block devices
Packet writing on CD/DVD media: Y or M
File Systems
UDF filesystems support (read only): Y
UDF write support (DANGEROUS) Y</screen></para>
UDF write support (DANGEROUS) Y</screen>
<para>If necessary, recompile the kernel with
<screen><userinput><command>make dep &amp;&amp;
@ -35,9 +35,9 @@ appropriately and run <command>lilo</command>.
<para>Finally, create the packet driver device nodes in <filename
class="directory">/dev</filename>, add one node for every CD-RW drive you
want to support:
want to support:</para>
<screen><userinput><command>mknod /dev/pktcdvd0 b97 0
mknod /dev/pktcdvd1 b 97 1</command></userinput></screen></para>
mknod /dev/pktcdvd1 b 97 1</command></userinput></screen>
</sect2>

View File

@ -33,12 +33,12 @@ can add additional sections by repeating the above but changing the first 0 to
<para>After editing <filename>/etc/modules.conf</filename> you need to run
<command>depmod</command>. If the drivers you have compiled are for the
version of the kernel you are currently running, simply run
version of the kernel you are currently running, simply run</para>
<screen><userinput><command>depmod</command></userinput></screen>
If you are compiling drivers for a different kernel version than those you are
running, you will need to use a line along the lines of:
<para>If you are compiling drivers for a different kernel version than those
you are running, you will need to use a line along the lines of:</para>
<screen><userinput><command>depmod -a 2.4.22 -F /boot/System.map-2.4.22
</command></userinput></screen></para>
</command></userinput></screen>
</sect3>

View File

@ -28,7 +28,8 @@ make install</command></userinput></screen>
<para>If this is the first time you have installed the alsa drivers, you
will need to create the <filename class="directory">/dev</filename> entries
using the script provided in the <acronym>ALSA</acronym>-driver source tree:
<screen><userinput><command>./snddevices</command></userinput></screen></para>
using the script provided in the <acronym>ALSA</acronym>-driver source
tree:</para>
<screen><userinput><command>./snddevices</command></userinput></screen>
</sect2>

View File

@ -67,7 +67,7 @@ esac
<command>EOF
chmod 755 /etc/rc.d/init.d/alsa</command></userinput></screen>
<para>You can then create the appropriate symlinks:
<para>You can then create the appropriate symlinks:</para>
<screen><userinput><command>cd /etc/rc.d/init.d &amp;&amp;
ln -sf ../init.d/alsa ../rc0.d/K35alsa &amp;&amp;
ln -sf ../init.d/alsa ../rc1.d/K35alsa &amp;&amp;
@ -75,7 +75,7 @@ ln -sf ../init.d/alsa ../rc2.d/S40alsa &amp;&amp;
ln -sf ../init.d/alsa ../rc3.d/S40alsa &amp;&amp;
ln -sf ../init.d/alsa ../rc4.d/S40alsa &amp;&amp;
ln -sf ../init.d/alsa ../rc5.d/S40alsa &amp;&amp;
ln -sf ../init.d/alsa ../rc6.d/K35alsa</command></userinput></screen></para>
ln -sf ../init.d/alsa ../rc6.d/K35alsa</command></userinput></screen>
<para>Note that all channels of your soundcard are muted by default. You can
use the <command>alsamixer</command> program from
@ -85,9 +85,9 @@ use the <command>alsamixer</command> program from
<para>Also, the first time the above script is run, it will complain that
there is no state in <filename>/etc/asound.state</filename>. You can
prevent this by running the following commands after installing
<application><acronym>ALSA</acronym>-utils</application>:
<application><acronym>ALSA</acronym>-utils</application>:</para>
<screen><userinput><command>touch /etc/asound.state &amp;&amp;
alsactl store</command></userinput></screen></para>
alsactl store</command></userinput></screen>
<para>A final note is that the lines loading <filename>sfxload</filename>
are commented out. They are there as an example of other things you may

View File

@ -4,9 +4,9 @@
<para>Install <application>EsounD</application> by running the following
commands:</para>
<para><screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
<screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -56,14 +56,14 @@ chmod 755 /etc/rc.d/init.d/random</command></userinput></screen>
<para>Create the symbolic links to this file in the relevant
<filename class="directory">rc.d</filename> directories
with the following commands:
with the following commands:</para>
<screen><userinput><command>cd /etc/rc.d/init.d &amp;&amp;
ln -sf ../init.d/random ../rc0.d/K45random &amp;&amp;
ln -sf ../init.d/random ../rc2.d/S25random &amp;&amp;
ln -sf ../init.d/random ../rc3.d/S25random &amp;&amp;
ln -sf ../init.d/random ../rc4.d/S25random &amp;&amp;
ln -sf ../init.d/random ../rc5.d/S25random &amp;&amp;
ln -sf ../init.d/random ../rc6.d/K45random</command></userinput></screen></para>
ln -sf ../init.d/random ../rc6.d/K45random</command></userinput></screen>
</sect1>

View File

@ -3,10 +3,10 @@
<para>Install <application>Vim</application> by running the following commands:</para>
<para><screen><userinput><command>./configure --prefix=/usr \
<screen><userinput><command>./configure --prefix=/usr \
--with-features=huge &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -45,10 +45,10 @@ tripwire -m i</command></userinput></screen>
<sect3><title>Usage Information</title>
<para>To use <application>Tripwire</application> after this and run a report,
use the following command:
use the following command:</para>
<screen><userinput><command>tripwire -m c &gt; /etc/tripwire/report.txt
</command></userinput></screen></para>
</command></userinput></screen>
<para>View the output to check the integrity of your files. An automatic
integrity report can be produced by using a cron facility to schedule
@ -63,8 +63,8 @@ the name of the newest file which starts with <filename>linux-</filename> and
ends in <filename>.twr</filename>. This encrypted file was created during the
last report creation and is needed to update the tripwire database of your
system. Then, type in the following command making the appropriate
substitutions for '?':
<screen><userinput><command>tripwire -m u -r /var/lib/tripwire/report/linux-???????-??????.twr </command></userinput></screen></para>
substitutions for '?':</para>
<screen><userinput><command>tripwire -m u -r /var/lib/tripwire/report/linux-???????-??????.twr </command></userinput></screen>
<para>You will be placed into vim with a copy of the report in front of you. If
all the changes were good, then just type <command>:x</command> and after
@ -77,9 +77,10 @@ the report and type <command>:x</command>. </para>
<sect3><title>Changing the Policy File</title>
<para>If you are unhappy with your policy file and would like to modify it or
use a new one, modify the policy file and then execute the following commands:
use a new one, modify the policy file and then execute the following
commands:</para>
<screen><userinput><command>twadmin -m P /etc/tripwire/twpol.txt &amp;&amp;
tripwire -m i</command></userinput></screen></para>
tripwire -m i</command></userinput></screen>
</sect3>

View File

@ -19,9 +19,9 @@ patch -Np0 -i ../tripwire-cfg.patch &amp;&amp;
cp /etc/tripwire/tw.cfg /usr/sbin &amp;&amp;
cp policy/*.txt /usr/share/doc/tripwire</command></userinput></screen>
<para>Reverse the modifications made above:
<para>Reverse the modifications made above:</para>
<screen><userinput><command>rm /usr/bin/gmake &amp;&amp;
export PATH=$PATH_HOLD</command></userinput></screen></para>
export PATH=$PATH_HOLD</command></userinput></screen>
</sect2>

View File

@ -65,7 +65,8 @@ esac
chmod 755 /etc/rc.d/init.d/lpd</command></userinput></screen>
<para>Create the symbolic links to the lprng init script in the relevant
<filename>rc.d</filename> directories with the following commands:
<filename>rc.d</filename> directories with the following
commands:</para>
<screen><userinput><command>cd /etc/rc.d/init.d &amp;&amp;
ln -sf ../init.d/lpd ../rc0.d/K00lprng &amp;&amp;
ln -sf ../init.d/lpd ../rc1.d/K00lprng &amp;&amp;
@ -73,7 +74,7 @@ ln -sf ../init.d/lpd ../rc2.d/S99lprng &amp;&amp;
ln -sf ../init.d/lpd ../rc3.d/S99lprng &amp;&amp;
ln -sf ../init.d/lpd ../rc4.d/S99lprng &amp;&amp;
ln -sf ../init.d/lpd ../rc5.d/S99lprng &amp;&amp;
ln -sf ../init.d/lpd ../rc6.d/K00lprng</command></userinput></screen></para>
ln -sf ../init.d/lpd ../rc6.d/K00lprng</command></userinput></screen>
</sect3>

View File

@ -102,21 +102,21 @@ specified.</para>
<para><filename>/etc/courier/me</filename></para>
<screen><userinput><command>cat &gt; /etc/courier/me &lt;&lt; "EOF"</command>
{servername.yourdomain}
<replaceable>[servername.yourdomain]</replaceable>
<command>EOF</command></userinput></screen>
<para><filename>/etc/courier/locals</filename></para>
<screen><userinput><command>cat &gt; /etc/courier/locals &lt;&lt; "EOF"</command>
localhost
{yourdomain}
<replaceable>[yourdomain]</replaceable>
<command>EOF</command></userinput></screen>
<para><filename>/etc/courier/esmtpacceptmailfor.dir/system</filename></para>
<screen><userinput><command>cat &gt;/etc/courier/esmtpacceptmailfor.dir/system &lt;&lt; "EOF"</command>
localhost
{yourdomain}
<replaceable>[yourdomain]</replaceable>
<command>EOF</command></userinput></screen>
<para>You will also need to edit the aliases file and change the
@ -258,9 +258,9 @@ server.</para>
<para>If you are not using <acronym>SSL</acronym> on your <application>Apache
</application> server, you will need to add
<filename>/etc/courier/webadmin/unsecureok</filename>, so you will be able
to use your web based administration tool.
to use your web based administration tool.</para>
<screen><userinput><command>touch /etc/courier/webadmin/unsecureok</command></userinput></screen></para>
<screen><userinput><command>touch /etc/courier/webadmin/unsecureok</command></userinput></screen>
</sect3>
<sect3><title>Courier init.d script</title>
@ -275,7 +275,7 @@ follow commands:</para>
chmod 755 /etc/rc.d/init.d/courier</command></userinput></screen>
<para>Create the symbolic links to this file in the relevant
<filename>rc.d</filename> directory with the following commands:
<filename>rc.d</filename> directory with the following commands:</para>
<screen><userinput><command>cd /etc/rc.d/init.d &amp;&amp;
ln -sf ../init.d/courier ../rc0.d/K25courier &amp;&amp;
@ -284,7 +284,7 @@ ln -sf ../init.d/courier ../rc2.d/K25courier &amp;&amp;
ln -sf ../init.d/courier ../rc3.d/S35courier &amp;&amp;
ln -sf ../init.d/courier ../rc4.d/S35courier &amp;&amp;
ln -sf ../init.d/courier ../rc5.d/S35courier &amp;&amp;
ln -sf ../init.d/courier ../rc6.d/K25courier</command></userinput></screen></para>
ln -sf ../init.d/courier ../rc6.d/K25courier</command></userinput></screen>
</sect3>
</sect2>

View File

@ -3,10 +3,10 @@
<para> Before you compile the program, you need to create users and groups that
will be expected to be in place when the install script executes. Add the users
and groups with the following commands:
and groups with the following commands:</para>
<screen><userinput><command>groupadd courier &amp;&amp;
useradd -c 'Courier Mail Server -d /dev/null -g courier -s /bin/false courier</command></userinput></screen></para>
useradd -c 'Courier Mail Server -d /dev/null -g courier -s /bin/false courier</command></userinput></screen>
<para>Install <application>courier</application> by running the following commands:</para>

View File

@ -90,7 +90,7 @@ esac
chmod 755 /etc/rc.d/init.d/postfix</command></userinput></screen>
<para>Create the symbolic links to this file in the relevant
<filename>rc.d</filename> directory with the following commands:
<filename>rc.d</filename> directory with the following commands:</para>
<screen><userinput><command>cd /etc/rc.d/init.d &amp;&amp;
ln -sf ../init.d/postfix ../rc0.d/K25postfix &amp;&amp;
@ -99,7 +99,7 @@ ln -sf ../init.d/postfix ../rc2.d/K25postfix &amp;&amp;
ln -sf ../init.d/postfix ../rc3.d/S35postfix &amp;&amp;
ln -sf ../init.d/postfix ../rc4.d/S35postfix &amp;&amp;
ln -sf ../init.d/postfix ../rc5.d/S35postfix &amp;&amp;
ln -sf ../init.d/postfix ../rc6.d/K25postfix</command></userinput></screen></para>
ln -sf ../init.d/postfix ../rc6.d/K25postfix</command></userinput></screen>
</sect3>
</sect2>

View File

@ -69,7 +69,7 @@ esac
EOF
chmod 755 /etc/rc.d/init.d/sendmail</command></userinput></screen>
<para>Create the run level symlinks with the following commands:
<para>Create the run level symlinks with the following commands:</para>
<screen><userinput><command>cd /etc/rc.d/init.d &amp;&amp;
ln -sf ../init.d/sendmail ../rc0.d/K25sendmail &amp;&amp;
@ -78,7 +78,6 @@ ln -sf ../init.d/sendmail ../rc2.d/K25sendmail &amp;&amp;
ln -sf ../init.d/sendmail ../rc3.d/S35sendmail &amp;&amp;
ln -sf ../init.d/sendmail ../rc4.d/S35sendmail &amp;&amp;
ln -sf ../init.d/sendmail ../rc5.d/S35sendmail &amp;&amp;
ln -sf ../init.d/sendmail ../rc6.d/K25sendmail</command></userinput></screen></para>
</sect3>
ln -sf ../init.d/sendmail ../rc6.d/K25sendmail</command></userinput></screen></sect3>
</sect2>

View File

@ -3,8 +3,8 @@
<para>Install <application>BIND</application> by running the following commands:</para>
<para><screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
<screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -94,9 +94,10 @@ test anonymous access to the <acronym>CVS</acronym> repository log in to
another machine as an unprivileged user and execute the following command:
</para>
<para><screen><userinput><command>cvs -d:pserver:anonymous@servername:/cvsroot co cvstest</command></userinput></screen>
<screen><userinput><command>cvs
-d:pserver:anonymous@<replaceable>servername</replaceable>:/cvsroot co cvstest</command></userinput></screen>
<note><para>Replace "servername" with the <acronym>IP</acronym> address or
hostname of the <acronym>CVS</acronym> server</para></note></para>
hostname of the <acronym>CVS</acronym> server</para></note>
</sect2>

View File

@ -1,11 +1,11 @@
<sect2>
<title>Installation of <application>ATK</application></title>
<title>Installation of <application><acronym>ATK</acronym></application></title>
<para>Install <application>ATK</application> by running the following commands:</para>
<para>Install <application><acronym>ATK</acronym></application> by running the following commands:</para>
<para><screen><userinput><command>./configure --prefix=/usr &amp;&amp;
<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -1,11 +1,11 @@
<sect2>
<title>Installation of <application>GTK+</application></title>
<title>Installation of <application><acronym>GTK</acronym>+</application></title>
<para>Install <application>GTK+</application> by running the following commands:</para>
<para>Install <application><acronym>GTK</acronym>+</application> by running the following commands:</para>
<para><screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
<screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -1,11 +1,11 @@
<sect2>
<title>Installation of <application>GTK+</application></title>
<title>Installation of <application><acronym>GTK</acronym>+</application></title>
<para>Install <application>GTK+</application> by running the following commands:</para>
<para>Install <application><acronym>GTK</acronym>+</application> by running the following commands:</para>
<para><screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
<screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -3,7 +3,7 @@
<para>Install <application>LessTif</application> by running the following commands:</para>
<para><screen><userinput><command>./configure --prefix=/usr \
<screen><userinput><command>./configure --prefix=/usr \
--enable-build-20 \
--enable-build-21 \
--disable-debug \
@ -11,7 +11,7 @@
--disable-build-tests \
--with-xdnd &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -3,9 +3,9 @@
<para>Install <application>startup-notification</application> by running the following commands:</para>
<para><screen><userinput><command>./configure --prefix=/usr &amp;&amp;
<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -9,9 +9,9 @@ variable can be found in the configuration section of <xref linkend="pkgconfig"/
<para>Install <application>Pango</application> by running the following commands:</para>
<para><screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
<screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen></para>
make install</command></userinput></screen>
</sect2>

View File

@ -1,5 +1,5 @@
<sect2>
<title>Configuring <application>qt</application></title>
<title>Configuring <application>Qt</application></title>
<sect3><title>Configuration Information</title>
@ -8,26 +8,26 @@ the library directory <filename>/opt/qt/lib</filename> should appear
in <filename>/etc/ld.so.conf</filename> so that ldd can find the
shared libraries. The following command will add it if it is missing:</para>
<para><screen><userinput><command>cat &gt;&gt; /etc/ld.so.conf &lt;&lt; "EOF"</command>
<screen><userinput><command>cat &gt;&gt; /etc/ld.so.conf &lt;&lt; "EOF"</command>
# Begin qt addition to /etc/ld.so.conf
/opt/qt/lib
# End qt addition
<command>EOF
ldconfig</command></userinput></screen></para>
ldconfig</command></userinput></screen>
<para>You need to add the path for the <application>qt</application> man pages to the
<para>You need to add the path for the <application>Qt</application> man pages to the
<filename>man.conf</filename>
file. This can be done with the following command:</para>
<para><screen><userinput><command>cat &gt;&gt; /etc/man.conf &lt;&lt; "EOF"</command>
<screen><userinput><command>cat &gt;&gt; /etc/man.conf &lt;&lt; "EOF"</command>
# Begin qt addition to man.conf
MANPATH /opt/qt/doc/man
# End qt addition to man.conf
<command>EOF</command></userinput></screen></para>
<command>EOF</command></userinput></screen>
</sect3>

View File

@ -1,7 +1,7 @@
<sect2>
<title>Installation of <application>qt</application></title>
<para><screen><userinput><command>./configure -prefix /opt/qt-&qt-version; -qt-gif -system-libpng \
<screen><userinput><command>./configure -prefix /opt/qt-&qt-version; -qt-gif -system-libpng \
&nbsp;&nbsp;&nbsp;-system-libmng -system-zlib -system-libjpeg -no-g++-exceptions \
&nbsp;&nbsp;&nbsp;-thread &amp;&amp;
make &amp;&amp;
@ -9,7 +9,7 @@ make install &amp;&amp;
ln -sfn /opt/qt-&qt-version; /opt/qt &amp;&amp;
ln -s /opt/qt/lib/libqt-mt.so /opt/qt/lib/libqt.so &amp;&amp;
cp -r doc/man /opt/qt/doc &amp;&amp;
cp -r examples /opt/qt/doc</command></userinput></screen></para>
cp -r examples /opt/qt/doc</command></userinput></screen>
<note><para>
The build time for <application>qt</application> is quite long. If you want to save some time and don't want the tutorials and examples, change the first make line above to: