source: chapter06/gzip.xml@ ac1d807

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 12.2 12.2-rc1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/loongarch-12.2 xry111/mips64el xry111/multilib xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since ac1d807 was ca17032, checked in by Manuel Canales Esparcia <manuel@…>, 19 years ago

Including patches.ent from general.ent

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

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