Initializing... drag & drop files here
Supports: FILE
TZ2 is a compressed archive format that combines TAR (tape archive) bundling with Bzip2 compression. Bzip2 provides higher compression ratios than gzip, making TZ2 ideal for distributing software packages on Linux/Unix systems, creating highly compressed backups of files and directories, sharing files with maximum compression for bandwidth-limited transfers, and packaging source code and documentation for open-source projects.
| Feature | TZ2 (TAR.BZ2) | TGZ (TAR.GZ) | ZIP | 7Z |
|---|---|---|---|---|
| Compression | Bzip2 | Gzip | Deflate | LZMA/LZMA2 |
| Compression ratio | High | Medium | Medium | Highest |
| Speed | Slow | Fast | Fast | Slow |
| Linux native | Yes | Yes | Via unzip | Via p7zip |
| Windows native | No (7-Zip) | No (7-Zip) | Yes | No (7-Zip) |
| Best for | Linux packages, backups | Quick compression | Cross-platform sharing | Maximum compression |
TZ2 (.tz2) and TAR.BZ2 (.tar.bz2) are the same format — a TAR archive compressed with Bzip2. TZ2 is the shortened file extension. Both are opened with the same tools.
On Linux/macOS: tar -xjf file.tz2. On Windows: use 7-Zip, WinRAR, or PeaZip. Most modern archive managers on all platforms support TZ2/TAR.BZ2.
Bzip2 typically produces 10-20% smaller files than Gzip, but compression is 2-5× slower. Use Bzip2 (TZ2) when file size matters more than speed. Use Gzip (TGZ) when speed is the priority.
"Single Archive" bundles all uploaded files into one TZ2 file. "Individual Archives" creates a separate TZ2 for each uploaded file. Use Single Archive for distributing a set of related files together.
Yes. TZ2 is a general-purpose archive format that can compress any file type — documents, images, source code, binaries, and more.