Differences between revisions 34 and 36 (spanning 2 versions)
Revision 34 as of 2019-08-15 16:23:59
Size: 1189
Editor: nodiscc
Comment: unlink non-existing pages
Revision 36 as of 2019-11-24 22:22:50
Size: 1232
Editor: AlbanVidal
Comment: Fix translations header
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
~-Translation(s): [[it/TarBall|Italiano]]-~
~-[[DebianWiki/EditorGuide#translation|Translation(s)]]: English - [[it/TarBall|Italiano]]-~
Line 8: Line 7:
It is used widely to archive and unarchive files, which means to accumulate a large collection of files into a single archive file (packer), while preserving FileSystem information such as user and group permissions, dates, and [[directory]] structures. Tarballs are commonly used to pack [[source]] code. It is used widely to archive and unarchive files, which means to accumulate a large collection of files into a single archive file (packer), while preserving FileSystem information such as user and group permissions, dates, and directory structures. Tarballs are commonly used to pack [[source]] code.

Translation(s): English - Italiano


A Tarball is a commonly used name to refer to an archive file in the tar (Tape Archive) format. These files are produced by the command tar.

It is used widely to archive and unarchive files, which means to accumulate a large collection of files into a single archive file (packer), while preserving FileSystem information such as user and group permissions, dates, and directory structures. Tarballs are commonly used to pack source code.

tar itself does not support compression directly. It is most commonly used in tandem with an external compression utility such as gzip or bzip2. These compression utilities generally only compress a single file, hence the pairing with tar, which can produce a single file from many files.

The MIME type of tar archives is application/x-tar

File extensions

  • .tar
  • .tar.gz or .tgz (only when compressed by gzip)
  • .tar.bz2 or .tbz (only when compressed by bzip2)


CategoryCompression CategoryFileFormat