Initializing... drag & drop files here
Supports: TAR
TAR (Tape Archive) is the standard archiving format for Linux and Unix systems. Unlike ZIP or RAR, TAR itself doesn't compress files — it bundles multiple files and directories into a single archive while preserving file permissions, ownership, and directory structure. TAR files are the foundation of Linux packaging — .tar.gz, .tar.bz2, and .tar.xz are all TAR archives with added compression.
Extracting TAR files online lets you access Linux archives, software packages, and backups without command-line tools — useful on Windows or Chromebooks.
| Format | Compression | Extension |
|---|---|---|
| TAR | None | .tar |
| TAR + gzip | gzip | .tar.gz, .tgz |
| TAR + bzip2 | bzip2 | .tar.bz2, .tb2, .tz2 |
| TAR + xz | xz/LZMA2 | .tar.xz |
TAR (Tape Archive) bundles multiple files into a single archive without compression. Originally developed for tape backup systems in Unix, it's now the standard archiving format for Linux/Unix systems.
TAR was designed to bundle files, not compress them. Compression is handled by a separate tool (gzip, bzip2, xz) applied on top of the TAR archive. This separation allows choosing the best compression for each use case.
Any files and directories — source code, binaries, configuration files, entire directory trees with preserved permissions and ownership.
Browse the extracted contents and download only the files you need.
No. This tool extracts TAR archives in your browser — works on Windows, macOS, and any device.