History
An early archiver was the Multics command ''archive'', descended from the CTSS command of the same name, which was a basic archiver and performed no compression. Multics also had a "tape_archiver" command, abbreviated ''ta'', which was perhaps the forerunner of the Unix command ''tar''.Unix archivers
The Unix tools '' ar'', '' tar'', and '' cpio'' act as archivers but not compressors. Users of the Unix tools use additional compression tools, such as gzip, bzip2, or xz, to compress the archive file after packing or remove compression before unpacking the archive file. The filename extensions are successively added at each step of this process. For example, archiving a collection of files with ''tar'' and then compressing the resulting archive file with ''gzip'' results a file with.tar.gz
extension.
This approach has two goals:
# It follows the Unix philosophy that each program should accomplish a single task to perfection, as opposed to attempting to accomplish everything with one tool. As compression technology progresses, users may use different compression programs without having to modify or abandon their archiver.
# The archives use solid compression. When the files are combined, the compressor can exploit redundancy across several archived files and achieve better compression than a compressor that compresses each files individually.
This approach, however, has disadvantages too:
# Extracting or modifying one file is difficult. Extracting one file requires decompressing an entire archive, which can be time- and space-consuming. Modifying one means the file needs to be put back into archive and the archive recompressed again. This operation requires additional time and disk space.
# The archive becomes damage-prone. If the area holding shared data for several files is damaged, all those files are lost.
# It is impossible to take advantage of redundancy between files unless the compression window is larger than the size of an individual file. For example, gzip uses DEFLATE, which typically operates with a 32768-byte window, whereas bzip2 uses a Burrows–Wheeler transform roughly 27 times bigger. xz defaults to 8 MiB but supports significantly larger windows.
Windows archivers
The built-in archiver ofSee also
* Comparison of file archivers * Archive format * List of archive formats * Comparison of archive formatsReferences
External links
* {{DEFAULTSORT:File Archiver Storage systems Computer file systems Computer archives Utility software types