In computing, tar is a computer software utility for collecting many files into one archive file, often referred to as a tarball, for distribution or backup purposes. The name is derived from (t)ape (ar)chive, as it was originally developed to write data to sequential I/O devices with no file system of their own. The archive data sets created by tar contain various file system parameters, such. DMG files are not zipped files, as much as they are images. They are closer to an.iso than a.zip in that they are disk images which are mountable and the contents can be compressed. A DMG therefor must also contain block data, along with the regular file attributes like Meta data and the actual data of the file. I downloaded something and it came in a tgz file. I have absolutely no idea how to unpack or open or whatever this file and the only information I can find from google is that I have to download some $80 stuffit program.
Often, Unix/BSD/Linux files and source code are distributed in a zipped tar file, sometimes called a tarball. Extensions for tarballs are usually .tgz or .tar.gz (gz because it was compressed using gzip, the free GNU zip program). Rarely, you may run across a tar file that is not compressed and has an extension of simply .tar.Here are some common uses for tar. If you pass a directory or a wildcard to tar, it will include all subdirectories in the tar file by default.
Tar czpvf backup.tar.gz folder #backup.tgz is acceptable as well tar cjpvf backup.tar.bz2 folder #backup.tbz2 works too If you want to have a tar file you can 'update' package the tar using the P flag: tar cpPvf backup.tar folder Then to update, replace 'c' with 'u' and when unpacking, you can use 'k' to preserve files that already exist. Tar.gz.ro 011000 001010 001000 011000 01101111. How to convert iso images to dmg.
For example, a tar archive archive.tar, is named archive.tar.gz, when it is compressed by gzip. Popular tar programs like the BSD and GNU versions of tar support the command line options Z (compress), z (gzip), and j (bzip2) to compress or decompress the archive file upon creation or unpacking. 7-Zip VS Keka VS Unarchiver. For the reason that many users are taking much interest into Keka and The Unarchiver when looking for a good 7-Zip alternative on mac, here we have a brief comparison on these 3 archive utilities.
Create a gzipped tar archivetar czvf backup.tgz files-to-backup
Create a gzipped tar archive, preserving file permissions
tar czvpf backup.tgz files-to-backup
Extract a gzipped tar archive
tar xzvf backup.tgz files-to-backup
Create a bzipped tar archive (using bzip compression instead of gzip)
tar cjvf backup.bz2 files-to-backup
Extract a bzipped tar archive
tar xjvf backup.bz2 files-to-backup
List files in a tar archive without extracing
tar tf backup.tgz
List files in a zipped tar archive without extracing
tar tzf backup.tgz
Original author(s) | |
---|---|
Developer(s) | GNU Project |
Initial release | 31 October 1992; 26 years ago |
Stable release | 1.10 (GNU Gzip)[1] / 29 December 2018; 9 months ago |
Repository | git.savannah.gnu.org/cgit/gzip.git |
Written in | C |
Operating system | Unix-like |
Type | Data compression |
License | GPLv3 |
Website | www.gnu.org/software/gzip/ |
Bin.dmg Vs Bin.tar.gz
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[edit]
Filename extension | .gz |
---|---|
Internet media type | application/gzip[2] |
Uniform Type Identifier (UTI) | org.gnu.gnu-zip-archive |
Magic number | 1f 8b |
Developed by | Jean-loup Gailly and Mark Adler |
Type of format | Data compression |
Open format? | Yes |
Website | gzip.org (obsolete) |
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 compressionalgorithms 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:
- a 10-byte header, containing a magic number (
1f 8b
), the compression ID (08
for DEFLATE), 1-byte of header flags, a 4-byte timestamp, compression flags and the operating system ID. - optional extra headers as allowed by the header flags, including the original filename, a comment field, an 'extra' field, and a 2-byte CRC-32 checksum for the headers section.[3]
- a body, containing a DEFLATE-compressed payload
- an 8-byte footer, containing a CRC-32 checksum and the length of the original uncompressed data, modulo 232.[4]
Although its file format also allows for multiple such streams to be concatenated (gzipped files are simply decompressed concatenated as if they were originally one file[5]), gzip is normally used to compress just single files.[6] Compressed archives are typically created by assembling collections of files into a single tar archive (also called tarball[7]), and then compressing that archive with gzip. The final compressed file usually has the extension .tar.gz or .tgz.
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[edit]
Developer(s) | The NetBSD Foundation |
---|---|
Repository | cvsweb.netbsd.org/bsdweb.cgi/src/usr.bin/gzip/ |
Written in | C |
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.[8]FreeBSD, DragonFly BSD 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.[9] These implementations originally come from NetBSD, and support decompression of bzip2 and the Unix pack format.
An alternative compression program achieving 3-8% better compression is Zopfli. It achieves gzip-compatible compression using more exhaustive algorithms, at the expense of compression time required. It does not affect decompression time.
pigz
, written by Mark Adler, is compatible with gzip and speeds up compression by using all available CPU cores and threads.[10]
Derivatives and other uses[edit]
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 Internet Explorer does not implement the standard correctly and cannot handle the zlib format as specified in RFC 1950.[11]
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).[12]
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.[citation needed]
See also[edit]
Notes[edit]
- ^Meyering, Jim (29 December 2018). 'gzip-1.10 released [stable]'. The Free Software Foundation. Retrieved 31 December 2018.
- ^The 'application/zlib' and 'application/gzip' Media Types. Tools.ietf.org. doi:10.17487/RFC6713. RFC 6713. Retrieved 1 March 2014.
- ^Deutsch <ghost@aladdin.com>, L. Peter. 'GZIP file format specification version 4.3'. tools.ietf.org. Retrieved 23 July 2019.
- ^Jean-loup Gailly. 'GNU Gzip'. Gnu.org. Retrieved 11 October 2015.
- ^'GNU Gzip: Advanced usage'. Gnu.org. Retrieved 28 November 2012.
- ^'Can gzip compress several files into a single archive?'. Gnu.org. Retrieved 27 January 2010.
- ^'tarball, The Jargon File, version 4.4.7'. Catb.org. Retrieved 27 January 2010.
- ^'OpenBSD gzip(1) manual page'. Openbsd.org. OpenBSD. Retrieved 4 February 2018.
- ^'gzip'. Man.freebsd.org. 9 October 2011. Retrieved 1 March 2014.
- ^Mark Adler (2017). 'pigz: A parallel implementation of gzip for modern multi-processor, multi-core machines'. zlib.net.
- ^Lawrence, Eric (21 November 2014). 'Compressing the Web'. MSDN Blogs > IEInternals. Microsoft.
- ^'Comparison Tool: 7-zip vs bzip2 vs gzip'. compressionratings.com. Archived from the original on 1 November 2014. Retrieved 1 November 2014.
References[edit]
- RFC 1952 – GZIP file format specification version 4.3