Initializing... drag & drop files here
Supports: TZ2
.tz2 archive — you can also pull files in from Google Drive or Dropbox. Drop in several at once and each is handled in the same job..tz2 is one of the short single-extension aliases for a bzip2-compressed tar archive — the same thing more commonly written .tar.bz2 or .tbz2. Under the hood it is a TAR archive (which bundles files together while preserving their names, directory structure, timestamps, ownership, and Unix permissions) that has then been compressed with bzip2, a lossless compressor released in 1996 by Julian Seward that uses the Burrows–Wheeler transform. The .tar.bz2, .tbz2, .tb2, .tbz, and .tz2 extensions are interchangeable names for the same container.
The reason most people convert away from .tz2 is simply that the extension is uncommon. The contents are standard, but the unusual three-character name confuses some unarchivers and double-click handlers — even though 7-Zip, The Unarchiver, tar, and most Linux file managers open it fine. Converting solves a few concrete problems:
| Format | Compression | Typical size vs. bzip2 | Decompress speed | Opens natively on |
|---|---|---|---|---|
| TZ2 / TAR.BZ2 | bzip2 (Burrows–Wheeler) | baseline | Moderate | Linux/macOS CLI, 7-Zip, The Unarchiver |
| ZIP | DEFLATE | Larger | Fast | Windows, macOS, ChromeOS (built-in) |
| 7Z | LZMA / LZMA2 | Smaller | Moderate | 7-Zip, p7zip, many archivers |
| TAR.GZ / TGZ | gzip (DEFLATE) | Slightly larger | Fast | Linux/macOS CLI, 7-Zip |
| TAR.XZ | xz / LZMA2 | Smaller | Fast | Linux/macOS CLI, 7-Zip |
| TAR | none (archive only) | Much larger | Instant (no decompress) | Linux/macOS CLI, 7-Zip |
Compression ratios depend heavily on the data; the "typical size" column reflects general behavior on mixed text-and-binary content, not a guarantee for any specific file.
A .tz2 file is a tar archive that has been compressed with bzip2 — identical in content to a .tar.bz2 or .tbz2 file, just using one of the shorter single-extension names. Inside, TAR bundles the original files and folders (keeping their structure, timestamps, and Unix permissions), and bzip2 then compresses that bundle losslessly. Because .tz2 is an uncommon spelling of a common format, the simplest fix when a program won't open it is to convert it to ZIP or to rename/repack it as .tar.bz2.
On Linux and macOS, the tar command opens it directly (tar -xjf file.tz2), and the macOS Archive Utility / The Unarchiver handle it on double-click. On Windows there's no built-in handler, but the free, open-source 7-Zip opens .tz2 after you point it at the file (Windows 11 also added native tar/tar.bz2 extraction). If your tool refuses the .tz2 extension specifically, converting to ZIP here sidesteps the problem entirely.
No. Both bzip2 and the formats you convert to (ZIP, 7Z, gzip, xz) are lossless, so every byte of the original files is preserved — converting only changes how they are packed and compressed, never the file contents. The one thing to know is that ZIP's handling of Unix file permissions and ownership is less consistent across tools than tar's, so if those POSIX attributes matter for your workflow, convert to TAR, TAR.GZ, or TAR.XZ rather than ZIP.
Choose ZIP for maximum compatibility — it opens with no extra software on Windows, macOS, and ChromeOS, which is what most people sending or storing an archive actually need. Choose 7Z when smaller file size matters more than universal support: 7-Zip's LZMA compression usually produces a tighter archive than bzip2 or ZIP's DEFLATE, at the cost of needing a 7-Zip-aware tool to open it. If you want to stay in the tar family but speed up decompression, TAR.GZ is the practical middle ground.
bzip2 generally compresses more tightly than gzip (which uses DEFLATE) but is slower to both compress and decompress. xz, which uses LZMA2, typically produces smaller archives than bzip2 with notably faster decompression, though its compression step is the slowest of the three. In practice: pick TAR.GZ when speed and broad script support matter, TAR.BZ2/TZ2 as a balanced middle, and TAR.XZ when you want the smallest archive and don't mind a slower pack.
There's no fixed per-file cap, and converting an archive is fast because it's a repack rather than a media re-encode — in our testing, a 50 MB .tz2 re-packed to ZIP in a few seconds. The real constraint is upload size and your connection speed for very large archives. Every file is uploaded over an encrypted connection, processed on our servers, and deleted automatically after a few hours — no sign-up and no watermark, and nothing is ever shared or made public.