aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/bzip2-inst.sgml
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2001-02-15 15:26:52 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2001-02-15 15:26:52 +0000
commitb08f4096533577934b885fa9df41d3881d141612 (patch)
tree8e5ffc0ba65ac34d97cd6a896d33b85a897a6da8 /chapter06/bzip2-inst.sgml
parentad08014624938a3a3bfd1b44e8b27d02c7b06dd8 (diff)
Initial XML commit
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@174 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/bzip2-inst.sgml')
-rw-r--r--chapter06/bzip2-inst.sgml40
1 files changed, 0 insertions, 40 deletions
diff --git a/chapter06/bzip2-inst.sgml b/chapter06/bzip2-inst.sgml
deleted file mode 100644
index 1e244d197..000000000
--- a/chapter06/bzip2-inst.sgml
+++ /dev/null
@@ -1,40 +0,0 @@
-<sect2>
-<title>Installation of Bzip2</title>
-
-<para>
-Install Bzip2 by running the following commands:
-</para>
-
-<blockquote><literallayout>
-
- <userinput>make -f Makefile-libbz2_so &amp;&amp;</userinput>
- <userinput>make bzip2recover libbz2.a &amp;&amp;</userinput>
- <userinput>cp bzip2-shared /bin/bzip2 &amp;&amp;</userinput>
- <userinput>cp bzip2recover /bin &amp;&amp;</userinput>
- <userinput>cp bzip2.1 /usr/share/man/man1 &amp;&amp;</userinput>
- <userinput>cp bzlib.h /usr/include &amp;&amp;</userinput>
- <userinput>cp -a libbz2.so* libbz2.a /lib &amp;&amp;</userinput>
- <userinput>rm /usr/lib/libbz2.a &amp;&amp;</userinput>
- <userinput>cd /bin &amp;&amp;</userinput>
- <userinput>rm bunzip2 && ln -s bzip2 bunzip2 &amp;&amp;</userinput>
- <userinput>rm bzcat && ln -s bzip2 bzcat &amp;&amp;</userinput>
- <userinput>cd /usr/share/man/man1 &amp;&amp;</userinput>
- <userinput>ln -s bzip2.1 bunzip2.1 &amp;&amp;</userinput>
- <userinput>ln -s bzip2.1 bzcat.1 &amp;&amp;</userinput>
- <userinput>ln -s bzip2.1 bzip2recover.1</userinput>
-
-</literallayout></blockquote>
-
-<para>
-Although it's not strictly a part of a basic LFS system it's worth
-mentioning that you can download a patch for Tar which enables the tar
-program to compress and uncompress using bzip2/bunzip2 easily. With a
-plain tar you'll have to use constructions like bzcat file.tar.bz|tar
-xv or tar --use-compress-prog=bunzip2 -xvf file.tar.bz2 to use bzip2 and
-bunzip2 with tar. This patch gives you the -y option so you can unpack a
-Bzip2 archive with tar xvfy file.tar.bz2. Applying this patch will be
-mentioned later on when you re-install the Tar package.
-</para>
-
-</sect2>
-