Notes from when I downloaded the latest gzip from www.gnu.org on 1-29-2003. Started at www.gnu.org and found & downloaded the latest gzip 1.2.4, from ftp://gatekeeper.dec.com/pub/GNU/gzip. gzip -d < gzip-1.2.4.tar.gz | tar xf - cd gzip-1.2.4 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This was extracted from their README: Note about zip vs. gzip: The name 'gzip' was a very unfortunate choice, because zip and gzip are two really different programs, although the actual compression and decompression sources were written by the same persons. A different name should have been used for gzip, but it is too late to change now. zip is an archiver: it compresses several files into a single archive file. gzip is a simple compressor: each file is compressed separately. Both share the same compression and decompression code for the 'deflate' method. unzip can also decompress old zip archives (implode, shrink and reduce methods). gunzip can also decompress files created by compress and pack. zip 1.9 and gzip do not support compression methods other than deflation. (zip 1.0 supports shrink and implode). Better compression methods may be added in future versions of gzip. zip will always stick to absolute compatibility with pkzip, it is thus constrained by PKWare, which is a commercial company. The gzip header format is deliberately different from that of pkzip to avoid such a constraint. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To build, ( These lines were found like ) cd gzip-1.2.4 ( this 2 months later (!!!),so ) ./configure --prefix=/local/bin ( I don't know if I ever finished ) make ( this or not. RAJ 3-26-2003 )