descriptionGNU Gzip mirror
homepage URLhttp://www.gnu.org/software/gzip/
repository URLgit://git.sv.gnu.org/gzip.git
ownereblake@redhat.com
last changeSun, 22 Sep 2024 07:07:11 +0000 (22 00:07 -0700)
last refreshWed, 25 Sep 2024 12:44:41 +0000 (25 14:44 +0200)
content tags
add:
README
This is the file README for the gzip distribution.

The GNU gzip home page is https://www.gnu.org/software/gzip.

gzip (GNU zip) is a compression utility designed to be a replacement
for 'compress'. Its main advantages over compress are much better
compression and freedom from patented algorithms.  The GNU Project
uses it as the standard compression program for its system.

gzip currently uses by default the LZ77 algorithm used in zip 1.9 (the
portable pkzip compatible archiver). The gzip format was however
designed to accommodate several compression algorithms. See below
for a comparison of zip and gzip.

gunzip can currently decompress files created by gzip, compress or
pack. The detection of the input format is automatic.  For the
gzip format, gunzip checks a 32 bit CRC. For pack, gunzip checks the
uncompressed length.  The 'compress' format was not designed to allow
consistency checks. However gunzip is sometimes able to detect a bad
.Z file because there is some redundancy in the .Z compression format.
If you get an error when uncompressing a .Z file, do not assume that
the .Z file is correct simply because the standard uncompress does not
complain.  This generally means that the standard uncompress does not
check its input, and happily generates garbage output.

gzip produces files with a .gz extension. Previous versions of gzip
used the .z extension, which was already used by the 'pack'
Huffman encoder. gunzip is able to decompress .z files (packed
or gzip'ed).

Several planned features are not yet supported (see the file TODO).
See the file NEWS for a summary of changes since the last release.
See the file INSTALL for installation instructions.

WARNING: gzip is sensitive to compiler bugs, particularly when
optimizing.  Use "make check" to check that gzip was compiled
correctly.  Try compiling gzip without any optimization if you have a
problem.

Please send all comments and bug reports by electronic mail to
<bug-gzip@gnu.org>.

Bug reports should ideally include:

    * The complete output of "gzip -V" (or the contents of revision.h
      if you can't get gzip to compile)
    * The hardware and operating system (try "uname -a")
    * The compiler used to compile (if it is gcc, use "gcc -v")
    * A description of the bug behavior
    * The input to gzip, that triggered the bug

If you send me patches for machines I don't have access to, please test them
very carefully. gzip is used for backups, it must be extremely reliable.

The znew and gzexe shell scripts provided with gzip benefit from
(but do not require) the (non-GNU) cpmod utility to transfer file attributes.

The sample programs zread.c, sub.c and add.c in subdirectory sample
are provided as examples of useful complements to gzip. Read the
comments inside each source file.  The perl script ztouch is also
provided as example (not installed by default since it relies on perl).


gzip is free software, you can redistribute it and/or modify it under
the terms of the GNU General Public License, a copy of which is
provided under the name COPYING. The latest version of gzip is always
available from https://ftp.gnu.org/gnu/gzip or in any of the GNU
mirror sites.

Many thanks to those who provided me with bug reports and feedback.
See the files THANKS and ChangeLog for more details.


                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.

On Unix, gzip is mostly useful in combination with tar. GNU tar
1.11.2 and later has a -z option to invoke gzip automatically.  "tar -z"
compresses better than zip, since gzip can then take advantage of
redundancy between distinct files. The drawback is that you must
scan the whole tar.gz file in order to extract a single file near
the end; unzip can directly seek to the end of the zip file. There
is no overhead when you extract the whole archive anyway.
If a member of a .zip archive is damaged, other files can still
be recovered. If a .tar.gz file is damaged, files beyond the failure
point cannot be recovered. (Future versions of gzip will have
error recovery features.)

gzip and gunzip are distributed as a single program. zip and unzip
are, for historical reasons, two separate programs, although the
authors of these two programs work closely together in the Info-ZIP
team. zip and unzip are not associated with the GNU project.
See https://infozip.sourceforge.net/ for more about zip and unzip.


For any copyright year range specified as YYYY-ZZZZ in this package
note that the range specifies every single year in that closed interval.

========================================================================

Copyright (C) 1999, 2001-2002, 2006-2007, 2009-2024 Free Software Foundation,
Inc.
Copyright (C) 1992, 1993 Jean-loup Gailly

Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with no
Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
Texts.  A copy of the license is included in the ``GNU Free
Documentation License'' file as part of this distribution.
shortlog
3 days ago Paul Eggertmaint: ‘type’ → ‘command -v’master
13 days ago Collin Funkmaint: update library names used by gnulib
2024-09-09 Jim Meyeringtests: reference: don't rely on od's -w option
2024-09-09 Jim Meyeringmaint: use gnulib's crc module in place of our own...
2024-09-09 Jim Meyeringbuild: update gnulib to latest, for crc tweak
2024-09-08 Jim Meyeringbuild: update gnulib to latest
2024-09-08 Jim Meyeringmaint: modernize see...licenses comments
2024-09-08 Jim Meyeringtests: reference: new test
2024-09-08 Jim Meyeringmaint: remove duplicate <errno.h> include
2024-09-08 Jim Meyeringmaint: rename deflate and inflate to gzip_deflate and...
2024-08-09 Collin Funkmaint: depend on Gnulib's limits-h
2024-08-09 Collin Funkgzip: simplify printing of offsets using -l and -v
2024-07-25 Paul Eggertgzip: reject suffixes containing '/'
2024-07-04 Jim Meyeringbuild: avoid GCC warnings from -Wmissing-variable-decla...
2024-07-04 Jim Meyeringbuild: avoid GCC warning from -Wmissing-variable-declar...
2024-07-04 Jim Meyeringbuild: update gnulib to latest, and update bootstrap...
...
tags
13 months ago v1.13 gzip 1.13
2 years ago v1.12 gzip 1.12
3 years ago v1.11 gzip 1.11
5 years ago v1.10 gzip 1.10
6 years ago v1.9 gzip 1.9
8 years ago v1.8 gzip 1.8
8 years ago v1.7 gzip 1.7
11 years ago v1.6 gzip 1.6
12 years ago v1.5 gzip 1.5
14 years ago v1.4 gzip 1.4
14 years ago v1.3.14 gzip 1.3.14
14 years ago v1.3.13 gzip 1.3.13
15 years ago v1.3.12 v1.3.12
heads
3 days ago master
forks
Cached version (1294s old)
gzip/ericb.git Eric Blake's GNU Gzip patches eblake@redhat.com 14 years ago