source: chapter06/gzip.xml@ 3ed279f

6.0
Last change on this file since 3ed279f was 3ed279f, checked in by Manuel Canales Esparcia <manuel@…>, 20 years ago

Tags changes in the contents sections to make a better print output.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/testing/BOOK@4009 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 5.9 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
[a001133]6<sect1 id="ch-system-gzip" xreflabel="Gzip" role="wrap">
[673b0d8]7<title>Gzip-&gzip-version;</title>
8<?dbhtml filename="gzip.html"?>
9
10<indexterm zone="ch-system-gzip"><primary sortas="a-Gzip">Gzip</primary></indexterm>
[6370fa6]11
[a001133]12<sect2 role="package"><title/>
[5888299]13<para>The Gzip package contains programs for compressing and decompressing
14files.</para>
15
[a001133]16<segmentedlist>
17<segtitle>&buildtime;</segtitle>
18<segtitle>&diskspace;</segtitle>
19<seglistitem><seg>0.1 SBU</seg><seg>2.6 MB</seg></seglistitem>
20</segmentedlist>
[673b0d8]21
[a001133]22<segmentedlist>
23<segtitle>Gzip installation depends on</segtitle>
24<seglistitem><seg>Bash, Binutils, Coreutils, Diffutils,
25GCC, Glibc, Grep, Make, Sed</seg></seglistitem>
26</segmentedlist>
27</sect2>
[3554fa3a]28
[a001133]29<sect2 role="installation">
[73aedd1d]30<title>Installation of Gzip</title>
31
32<para>Prepare Gzip for compilation:</para>
33
34<screen><userinput>./configure --prefix=/usr</userinput></screen>
35
[90e3cb3]36<para>The <command>gzexe</command> script has the location of the
[ef13657]37<command>gzip</command> binary hard-wired into it. Because the
38location of the binary is changed later, the following command ensures
39that the new location gets placed into the script:</para>
[73aedd1d]40
[2ec4b60]41<screen><userinput>sed -i 's@"BINDIR"@/bin@g' gzexe.in</userinput></screen>
[73aedd1d]42
43<para>Compile the package:</para>
44
45<screen><userinput>make</userinput></screen>
46
47<para>Install the package:</para>
48
49<screen><userinput>make install</userinput></screen>
50
[673b0d8]51<para>Move the programs to the <filename class="directory">/bin</filename> directory:</para>
[73aedd1d]52
53<screen><userinput>mv /usr/bin/gzip /bin
54rm /usr/bin/{gunzip,zcat}
55ln -s gzip /bin/gunzip
56ln -s gzip /bin/zcat
57ln -s gunzip /bin/uncompress</userinput></screen>
58
59</sect2>
[6370fa6]60
[5888299]61
[c6cb3aa]62<sect2 id="contents-gzip" role="content"><title>Contents of Gzip</title>
[673b0d8]63
[c6cb3aa]64<segmentedlist>
65<segtitle>Installed programs</segtitle>
66<seglistitem><seg>gunzip (link to gzip), gzexe,
[673b0d8]67gzip, uncompress (link to gunzip), zcat (link to gzip), zcmp, zdiff,
[c6cb3aa]68zegrep, zfgrep, zforce, zgrep, zless, zmore and znew</seg></seglistitem>
69</segmentedlist>
[673b0d8]70
[3ed279f]71<variablelist><bridgehead renderas="sect3">Short descriptions</bridgehead>
72<?dbfo list-presentation="list"?>
[673b0d8]73
[b8a819f]74<varlistentry id="gunzip">
75<term><command>gunzip</command></term>
[c6cb3aa]76<listitem>
77<para>decompresses gzipped files.</para>
[3ed279f]78<indexterm zone="ch-system-gzip gunzip"><primary sortas="b-gunzip">gunzip</primary></indexterm>
[c6cb3aa]79</listitem>
80</varlistentry>
[673b0d8]81
[b8a819f]82<varlistentry id="gzexe">
83<term><command>gzexe</command></term>
[c6cb3aa]84<listitem>
[ef13657]85<para>used to create self-uncompressing executable files.</para>
[3ed279f]86<indexterm zone="ch-system-gzip gzexe"><primary sortas="b-gzexe">gzexe</primary></indexterm>
[c6cb3aa]87</listitem>
88</varlistentry>
[673b0d8]89
[b8a819f]90<varlistentry id="gzip">
91<term><command>gzip</command></term>
[c6cb3aa]92<listitem>
93<para>compresses the given files, using Lempel-Ziv (LZ77) coding.</para>
[3ed279f]94<indexterm zone="ch-system-gzip gzip"><primary sortas="b-gzip">gzip</primary></indexterm>
[c6cb3aa]95</listitem>
96</varlistentry>
[673b0d8]97
[b8a819f]98<varlistentry id="zcat">
99<term><command>zcat</command></term>
[c6cb3aa]100<listitem>
101<para>uncompresses the given gzipped files to standard output.</para>
[3ed279f]102<indexterm zone="ch-system-gzip zcat"><primary sortas="b-zcat">zcat</primary></indexterm>
[c6cb3aa]103</listitem>
104</varlistentry>
[673b0d8]105
[b8a819f]106<varlistentry id="zcmp">
107<term><command>zcmp</command></term>
[c6cb3aa]108<listitem>
[ef57e3b]109<para>runs <command>cmp</command> on gzipped files.</para>
[3ed279f]110<indexterm zone="ch-system-gzip zcmp"><primary sortas="b-zcmp">zcmp</primary></indexterm>
[c6cb3aa]111</listitem>
112</varlistentry>
[673b0d8]113
[b8a819f]114<varlistentry id="zdiff">
115<term><command>zdiff</command></term>
[c6cb3aa]116<listitem>
[ef57e3b]117<para>runs <command>diff</command> on gzipped files.</para>
[3ed279f]118<indexterm zone="ch-system-gzip zdiff"><primary sortas="b-zdiff">zdiff</primary></indexterm>
[c6cb3aa]119</listitem>
120</varlistentry>
[73aedd1d]121
[b8a819f]122<varlistentry id="zegrep">
123<term><command>zegrep</command></term>
[c6cb3aa]124<listitem>
[ef57e3b]125<para>runs <command>egrep</command> on gzipped files.</para>
[3ed279f]126<indexterm zone="ch-system-gzip zegrep"><primary sortas="b-zegrep">zegrep</primary></indexterm>
[c6cb3aa]127</listitem>
128</varlistentry>
[673b0d8]129
[b8a819f]130<varlistentry id="zfgrep">
131<term><command>zfgrep</command></term>
[c6cb3aa]132<listitem>
[ef57e3b]133<para>runs <command>fgrep</command> on gzipped files.</para>
[3ed279f]134<indexterm zone="ch-system-gzip zfgrep"><primary sortas="b-zfgrep">zfgrep</primary></indexterm>
[c6cb3aa]135</listitem>
136</varlistentry>
[673b0d8]137
[b8a819f]138<varlistentry id="zforce">
139<term><command>zforce</command></term>
[c6cb3aa]140<listitem>
[ef57e3b]141<para>forces a <filename class="extension">.gz</filename> extension on all given files
142that are gzipped files, so that <command>gzip</command> will not compress them again. This can be
[673b0d8]143useful when file names were truncated during a file transfer.</para>
[3ed279f]144<indexterm zone="ch-system-gzip zforce"><primary sortas="b-zforce">zforce</primary></indexterm>
[c6cb3aa]145</listitem>
146</varlistentry>
[673b0d8]147
[b8a819f]148<varlistentry id="zgrep">
149<term><command>zgrep</command></term>
[c6cb3aa]150<listitem>
[ef57e3b]151<para>runs <command>grep</command> on gzipped files.</para>
[3ed279f]152<indexterm zone="ch-system-gzip zgrep"><primary sortas="b-zgrep">zgrep</primary></indexterm>
[c6cb3aa]153</listitem>
154</varlistentry>
[673b0d8]155
[b8a819f]156<varlistentry id="zless">
157<term><command>zless</command></term>
[c6cb3aa]158<listitem>
[ef57e3b]159<para>runs <command>less</command> on gzipped files.</para>
[3ed279f]160<indexterm zone="ch-system-gzip zless"><primary sortas="b-zless">zless</primary></indexterm>
[c6cb3aa]161</listitem>
162</varlistentry>
[673b0d8]163
[b8a819f]164<varlistentry id="zmore">
165<term><command>zmore</command></term>
[c6cb3aa]166<listitem>
[ef57e3b]167<para>runs <command>more</command> on gzipped files.</para>
[3ed279f]168<indexterm zone="ch-system-gzip zmore"><primary sortas="b-zmore">zmore</primary></indexterm>
[c6cb3aa]169</listitem>
170</varlistentry>
[673b0d8]171
[b8a819f]172<varlistentry id="znew">
173<term><command>znew</command></term>
[c6cb3aa]174<listitem>
[ef57e3b]175<para>re-compresses files from <command>compress</command> format to <command>gzip</command> format
176-- <filename class="extension">.Z</filename> to <filename class="extension">.gz</filename>.</para>
[3ed279f]177<indexterm zone="ch-system-gzip znew"><primary sortas="b-znew">znew</primary></indexterm>
[c6cb3aa]178</listitem>
179</varlistentry>
180</variablelist>
[673b0d8]181
182</sect2>
183
184</sect1>
[ef13657]185
Note: See TracBrowser for help on using the repository browser.