gzip

Gzip
Original author(s)
Developer(s) GNU Project
Initial release 31 October 1992 (1992-10-31)
Stable release
1.8 (GNU Gzip) / 26 April 2016 (2016-04-26)
Repository git.savannah.gnu.org/cgit/gzip.git
Written in C
Operating system Unix-like
Type Data compression
License GNU GPLv3
Website www.gnu.org/software/gzip/

gzip is a file format and a software application used for file compression and decompression. The program was created by Jean-loup Gailly and Mark Adler as a free software replacement for the compress program used in early Unix systems, and intended for use by GNU (the "g" is from "GNU"). Version 0.1 was first publicly released on 31 October 1992, and version 1.0 followed in February 1993.

File format

gzip
Filename extension .gz
Internet media type application/gzip[1]
Uniform Type Identifier (UTI) org.gnu.gnu-zip-archive
Developed by Jean-Loup Gailly and Mark Adler
Type of format Data compression
Open format? Yes
Website www.gzip.org

gzip is based on the DEFLATE algorithm, which is a combination of LZ77 and Huffman coding. DEFLATE was intended as a replacement for LZW and other patent-encumbered data compression algorithms which, at the time, limited the usability of compress and other popular archivers.

"gzip" is often also used to refer to the gzip file format, which is:

Although its file format also allows for multiple such streams to be concatenated (zipped files are simply decompressed concatenated as if they were originally one file[3]), gzip is normally used to compress just single files.[4] Compressed archives are typically created by assembling collections of files into a single tar archive, and then compressing that archive with gzip. The final .tar.gz or .tgz file is usually called a tarball.[5]

gzip is not to be confused with the ZIP archive format, which also uses DEFLATE. The ZIP format can hold collections of files without an external archiver, but is less compact than compressed tarballs holding the same data, because it compresses files individually and cannot take advantage of redundancy between files (solid compression).

Implementations

NetBSD Gzip / FreeBSD Gzip
Developer(s) The NetBSD Foundation
Repository git.savannah.gnu.org/cgit/gzip.git
Written in C
Operating system Cross-platform
Type Data compression
License Simplified BSD License

Various implementations of the program have been written. The most commonly known is the GNU Project's implementation using Lempel-Ziv coding (LZ77). OpenBSD's version of gzip is actually the compress program, to which support for the gzip format was added in OpenBSD 3.4. The 'g' in this specific version stands for gratis.[6] FreeBSD, DragonFlyBSD and NetBSD use a BSD-licensed implementation instead of the GNU version; it is actually a command-line interface for zlib intended to be compatible with the GNU implementation's options.[7] These implementations originally come from NetBSD, and supports decompression of bzip2 and the Unix pack format.

Derivatives and other uses

The tar utility included in most Linux distributions can extract .tar.gz files by passing the z option, e.g., tar -zxf file.tar.gz.

zlib is an abstraction of the DEFLATE algorithm in library form which includes support both for the gzip file format and a lightweight stream format in its API. The zlib stream format, DEFLATE, and the gzip file format were standardized respectively as RFC 1950, RFC 1951, and RFC 1952.

The gzip format is used in HTTP compression, a technique used to speed up the sending of HTML and other content on the World Wide Web. It is one of the three standard formats for HTTP compression as specified in RFC 2616. This RFC also specifies a zlib format (called "DEFLATE"), which is equal to the gzip format except that gzip adds eleven bytes of overhead in the form of headers and trailers. Still, the gzip format is sometimes recommended over zlib because Microsoft Internet Explorer does not implement the standard correctly and cannot handle the zlib format as specified in RFC 1950.[8]

zlib DEFLATE is used internally by the Portable Network Graphics (PNG) format.

Since the late 1990s, bzip2, a file compression utility based on a block-sorting algorithm, has gained some popularity as a gzip replacement. It produces considerably smaller files (especially for source code and other structured text), but at the cost of memory and processing time (up to a factor of 4).[9]

AdvanceCOMP and 7-Zip can produce gzip-compatible files, using an internal DEFLATE implementation with better compression ratios than gzip itself—at the cost of more processor time compared to the reference implementation.

See also

Notes

  1. The 'application/zlib' and 'application/gzip' Media Types. Tools.ietf.org. RFC 6713. https://tools.ietf.org/html/rfc6713. Retrieved 2014-03-01.
  2. Jean-loup Gailly. "GNU Gzip". Retrieved 11 October 2015.
  3. "GNU Gzip: Advanced usage". Retrieved 2012-11-28.
  4. "Can gzip compress several files into a single archive?". Retrieved 2010-01-27.
  5. "tarball, The Jargon File, version 4.4.7". Retrieved 2010-01-27.
  6. "OpenBSD gzip(1) manual page". OpenBSD. Retrieved 2007-07-23.
  7. "gzip". Man.freebsd.org. 2011-10-09. Retrieved 2014-03-01.
  8. Lawrence, Eric (21 October 2014). "Compressing the Web". MSDN Blogs > IEInternals. Microsoft.
  9. http://compressionratings.com/comp.cgi?7-zip+9.12b++bzip2+1.0.5++gzip+1.3.3+-5

References

  • RFC 1952 – GZIP file format specification version 4.3
This article is issued from Wikipedia - version of the 11/26/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.