As a primarily Windows developer, perhaps I'm missing something cultural in the Linux community, but it has always confused me when downloading something that the files are first put into a .tar archive, then zipped. Why the two step process? Doesn't zipping achieve the file grouping? Is there some other benefit that I'm not aware of?
|
2
|
|||||
|
|
|
bzip and gzip work on single files, not groups of files. Plain old zip (and pkzip) operate on groups of files and have the concept of the archive built-in. The *nix philosophy is one of small tools that do specific jobs very well and can be chained together. That's why there's two tools here that have specific tasks, and they're designed to fit well together. It also means you can use tar to group files and then you have a choice of compression tool (bzip, gzip, etc). |
||||||||||||||||||
|
|
|
It's odd that no-one else has mentioned that modern versions of GNU
You can also use the compressor of your choosing provided it supports the '
This would allow you to specify any alternative compressor. [Added: If you are extracting from
and these will be handled properly. If you use a non-standard compressor, then you need to specify that when you do the extraction.] The reason for the separation is, as in the selected answer, the separation of duties. Amongst other things, it means that people could use the ' [Added: someone noted in their answer that
Incidentally, the ' |
||||||||
|
|
|
An important distinction is in the nature of the two kinds of archives. TAR files are little more than a concatenation of the file contents with some headers, while gzip and bzip2 are stream compressors that, in tarballs, are applied to the whole concatenation. ZIP files are a concatenation of individually compressed files, with some headers. Actually, the DEFLATE algorithm is used by both zip and gzip, and with appropriate binary adjusting, you could take the payload of a gzip stream and put it in a zip file with appropriate header and dictionary entries. This means that the two different archive types have different trade-offs. For large collections of small files, TAR followed by a stream compressor will normally result in higher compression ratio than ZIP because the stream compressor will have more data to build its dictionary frequencies from, and thus be able to squeeze out more redundant information. On the other hand, a (file-length-preserving) error in a ZIP file will only corrupt those files whose compressed data was affected. Normally, stream compressors cannot meaningfully recover from errors mid-stream. Thus, ZIP files are more resilient to corruption, as part of the archive will still be accessible. |
||
|
|
|
|
I think you were looking for more of historical context to this. The original zip was for a single file. Tar is used to place multiple files into a single file. Therefore tarring and zipping is the two step process. Why it is still so dominant today is anyone's guess. From wikipedia for Tar_ (file_format)
|
||
|
|
|
|
The funny thing is, you can get behaviour not anticipated by the creators of |
||
|
|
|
Another reason it is so prevalent is that tar and gzip are on almost the entire *NIX install base out there. I believe this is probably the single largest reason. It is also why zip files are extremely prevalent on Windows, because support is built in, regardless of the superior routines in RAR or 7z. GNU tar also allows you to create/extract these files from one command (one step):
These are what I have committed to memory from my many years on Linux and recently on Nexenta (OpenSolaris). |
||||||||
|
|
|
gzip and bzip2 is simply a compressor, not an archiver-software. Hence, the combination. You need the tar-software to bundle all the files. ZIP itself, and RAR aswell are a combination of the two processes. |
||
|
|
|
|
In the Unix world, most applications are designed to do one thing, and do it well. The most popular zip utilities in Unix, gzip and bzip2, only do file compression. tar does the file concatenation. Piping the output of tar into a compression utility does what's needed, without adding excessive complexity to either piece of software. |
||
|
|
|
|
Tar = Groups files in 1 files GZip = Zip the file They split the process in 2. That's it. In the Windows environnement that you might be more used to use the WinZip or WinRar that do a Zip. The Zip process of these software do group the file and zipping but you simply do not see that process. |
||
|
|
|
Usually in the *nux world, bundles of files are distributed as tarballs and then optionally gzipped. Gzip is a simple file compression program that doesn't do the file bundling that tar or zip does. At one time, zip didn't properly handle some of the things that Unix tar and unix file systems considered normal, like symlinks, mixed case files, etc. I don't know if that's changed, but that's why we use tar. |
||||||
|
|
|
For the same reason why mac users love disk images: They are a really convenient way to archive stuff and then pass it around, up-/download or email it etc. And easier to use and more portable than zips IMHO. |
||
|
|
|
|
tar is popular mostly for historic reasons. There are several alternatives readily available. Some of them are around for nearly as long as tar, but couldn't surpass tar in popularity for several reasons.
A major advantage (and downside) of tar is that it has neither file header, nor central directory of contents. For many years it therefore never suffered from limitations in file-size (until this decade where an 8 Gb limit on files inside the archive became a problem, solved years ago). Apperantly the one downside of tar.gz (or ar.Z for that matter), which is that you have to uncompress the whole archive for extracting single files and listing archive contents, never hurt people enough to make them defect from tar in significant numbers. |
||
|
|
|
Tar is not only a file format, but it is a tape format. Tapes store data bit-by-bit. Each storage implementation was custom. Tar was the method by which you could take data off a disk, and store it onto tape in a way that other people could retrieve it without your custom program. Later, the compression programs came, and *nix still only had one method of creating a single file that contained multiple files. I believe it's just inertia that has continued with the tar.gz trend. Pkzip started with both compression and archival in one fell swoop, but then DOS systems didn't typically have tape drives attached! From wikipedia for Tar_ (file_format)
|
|||
