aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/gzip.xml
diff options
context:
space:
mode:
authorManuel Canales Esparcia <manuel@linuxfromscratch.org>2004-12-21 19:38:32 +0000
committerManuel Canales Esparcia <manuel@linuxfromscratch.org>2004-12-21 19:38:32 +0000
commit3f0c882398e626cd92503b1bd964a32e89f818dc (patch)
tree73e2935fe138615f4ec2d430fb7fbf6ae8fa9a80 /chapter06/gzip.xml
parentaaa3260c039e40d68545922b64199b039da6af7b (diff)
Removed the text in chapter 06.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@4446 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/gzip.xml')
-rw-r--r--chapter06/gzip.xml129
1 files changed, 2 insertions, 127 deletions
diff --git a/chapter06/gzip.xml b/chapter06/gzip.xml
index a72baf83a..df61d2d48 100644
--- a/chapter06/gzip.xml
+++ b/chapter06/gzip.xml
@@ -10,8 +10,6 @@
<indexterm zone="ch-system-gzip"><primary sortas="a-Gzip">Gzip</primary></indexterm>
<sect2 role="package"><title/>
-<para>The Gzip package contains programs for compressing and decompressing
-files.</para>
<segmentedlist>
<segtitle>&buildtime;</segtitle>
@@ -19,11 +17,6 @@ files.</para>
<seglistitem><seg>0.1 SBU</seg><seg>2.6 MB</seg></seglistitem>
</segmentedlist>
-<segmentedlist>
-<segtitle>Gzip installation depends on</segtitle>
-<seglistitem><seg>Bash, Binutils, Coreutils, Diffutils,
-GCC, Glibc, Grep, Make, Sed</seg></seglistitem>
-</segmentedlist>
</sect2>
<sect2 role="installation">
@@ -33,10 +26,7 @@ GCC, Glibc, Grep, Make, Sed</seg></seglistitem>
<screen><userinput>./configure --prefix=/usr</userinput></screen>
-<para>The <command>gzexe</command> script has the location of the
-<command>gzip</command> binary hard-wired into it. Because we later change
-the location of the binary, the following command ensures that the new
-location gets placed into the script:</para>
+<para>Issue a sed command:</para>
<screen><userinput>sed -i 's@"BINDIR"@/bin@g' gzexe.in</userinput></screen>
@@ -61,122 +51,7 @@ ln -s gunzip /bin/uncompress</userinput></screen>
<sect2 id="contents-gzip" role="content"><title>Contents of Gzip</title>
-<segmentedlist>
-<segtitle>Installed programs</segtitle>
-<seglistitem><seg>gunzip (link to gzip), gzexe,
-gzip, uncompress (link to gunzip), zcat (link to gzip), zcmp, zdiff,
-zegrep, zfgrep, zforce, zgrep, zless, zmore and znew</seg></seglistitem>
-</segmentedlist>
-
-<variablelist><title>Short descriptions</title>
-
-<varlistentry id="gunzip">
-<term><command>gunzip</command></term>
-<listitem>
-<indexterm zone="ch-system-gzip gunzip"><primary sortas="b-gunzip">gunzip</primary></indexterm>
-<para>decompresses gzipped files.</para>
-</listitem>
-</varlistentry>
-
-<varlistentry id="gzexe">
-<term><command>gzexe</command></term>
-<listitem>
-<indexterm zone="ch-system-gzip gzexe"><primary sortas="b-gzexe">gzexe</primary></indexterm>
-<para>is used to create self-uncompressing executable files.</para>
-</listitem>
-</varlistentry>
-
-<varlistentry id="gzip">
-<term><command>gzip</command></term>
-<listitem>
-<indexterm zone="ch-system-gzip gzip"><primary sortas="b-gzip">gzip</primary></indexterm>
-<para>compresses the given files, using Lempel-Ziv (LZ77) coding.</para>
-</listitem>
-</varlistentry>
-
-<varlistentry id="zcat">
-<term><command>zcat</command></term>
-<listitem>
-<indexterm zone="ch-system-gzip zcat"><primary sortas="b-zcat">zcat</primary></indexterm>
-<para>uncompresses the given gzipped files to standard output.</para>
-</listitem>
-</varlistentry>
-
-<varlistentry id="zcmp">
-<term><command>zcmp</command></term>
-<listitem>
-<indexterm zone="ch-system-gzip zcmp"><primary sortas="b-zcmp">zcmp</primary></indexterm>
-<para>runs <command>cmp</command> on gzipped files.</para>
-</listitem>
-</varlistentry>
-
-<varlistentry id="zdiff">
-<term><command>zdiff</command></term>
-<listitem>
-<indexterm zone="ch-system-gzip zdiff"><primary sortas="b-zdiff">zdiff</primary></indexterm>
-<para>runs <command>diff</command> on gzipped files.</para>
-</listitem>
-</varlistentry>
-
-<varlistentry id="zegrep">
-<term><command>zegrep</command></term>
-<listitem>
-<indexterm zone="ch-system-gzip zegrep"><primary sortas="b-zegrep">zegrep</primary></indexterm>
-<para>runs <command>egrep</command> on gzipped files.</para>
-</listitem>
-</varlistentry>
-
-<varlistentry id="zfgrep">
-<term><command>zfgrep</command></term>
-<listitem>
-<indexterm zone="ch-system-gzip zfgrep"><primary sortas="b-zfgrep">zfgrep</primary></indexterm>
-<para>runs <command>fgrep</command> on gzipped files.</para>
-</listitem>
-</varlistentry>
-
-<varlistentry id="zforce">
-<term><command>zforce</command></term>
-<listitem>
-<indexterm zone="ch-system-gzip zforce"><primary sortas="b-zforce">zforce</primary></indexterm>
-<para>forces a <filename class="extension">.gz</filename> extension on all given files
-that are gzipped files, so that <command>gzip</command> will not compress them again. This can be
-useful when file names were truncated during a file transfer.</para>
-</listitem>
-</varlistentry>
-
-<varlistentry id="zgrep">
-<term><command>zgrep</command></term>
-<listitem>
-<indexterm zone="ch-system-gzip zgrep"><primary sortas="b-zgrep">zgrep</primary></indexterm>
-<para>runs <command>grep</command> on gzipped files.</para>
-</listitem>
-</varlistentry>
-
-<varlistentry id="zless">
-<term><command>zless</command></term>
-<listitem>
-<indexterm zone="ch-system-gzip zless"><primary sortas="b-zless">zless</primary></indexterm>
-<para>runs <command>less</command> on gzipped files.</para>
-</listitem>
-</varlistentry>
-
-<varlistentry id="zmore">
-<term><command>zmore</command></term>
-<listitem>
-<indexterm zone="ch-system-gzip zmore"><primary sortas="b-zmore">zmore</primary></indexterm>
-<para>runs <command>more</command> on gzipped files.</para>
-</listitem>
-</varlistentry>
-
-<varlistentry id="znew">
-<term><command>znew</command></term>
-<listitem>
-<indexterm zone="ch-system-gzip znew"><primary sortas="b-znew">znew</primary></indexterm>
-<para>re-compresses files from <command>compress</command> format to <command>gzip</command> format
--- <filename class="extension">.Z</filename> to <filename class="extension">.gz</filename>.</para>
-</listitem>
-</varlistentry>
-</variablelist>
+<para>See testing</para>
</sect2>