blob: 4a08534d7b265618fc39a3bb97d5ee46dd560a37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<sect2>
<title>Installation of Gzip</title>
<para>Install Gzip by running the following commands:</para>
<para><screen><userinput>./configure --prefix=/usr &&
make &&
make install &&
cd /usr/bin &&
mv gzip /bin &&
rm gunzip zcat &&
cd /bin &&
ln -sf gzip gunzip &&
ln -sf gzip zcat &&
ln -sf gzip compress &&
ln -sf gunzip uncompress</userinput></screen></para>
</sect2>
|