Initializing... drag & drop files here
Supports: TAR.BZ2
.tar.bz2 archives. Multi-file selection is supported, so you can rename a whole batch in one pass..tz2 form (no recompression, no re-archiving)..tz2, or Individual Archives to produce one .tz2 per source file. For a straight .tar.bz2 → .tz2 rename, the default behaves as you'd expect..tz2 is ready in seconds — no sign-up, no watermark, no software install.TZ2 and TAR.BZ2 are the same file format — a tar archive compressed with bzip2. The only difference is the extension naming convention. The double-extension form (.tar.bz2) makes the layering explicit (tar inside bzip2); the single-extension form (.tz2) is a compact alias, alongside the more widely seen .tbz2, .tb2, and .tbz. Bzip2 itself was released by Julian Seward in August 1997 and compresses data in blocks between 100 KB and 900 KB using the Burrows-Wheeler transform, typically beating gzip on ratio by 10-15% in exchange for slower compression.
Common reasons people switch to the .tz2 extension:
.tar.bz2 (stripping the .bz2 half or appending .tmp on save). A single-extension .tz2 survives those round trips cleanly..tz2 slips past those naive *.tar.* regex blocklists without changing the bytes..tz2 is easier to wire into glob patterns (artifact-*.tz2) than artifact-*.tar.bz2..tz2 specifically (the way some BSD ports and older Slackware-style mirrors did), keeping the bytes identical while changing only the extension avoids re-extracting and re-archiving..tar.bz2 line-wrap awkwardly in narrow shell prompts; .tz2 is three characters shorter and stays on one column.If you actually want to change the compression (e.g. shrink files further with xz), convert to TAR.XZ or repackage as 7z instead.
| Property | TAR.BZ2 | TZ2 | TBZ2 / TB2 |
|---|---|---|---|
| Underlying format | tar + bzip2 | tar + bzip2 | tar + bzip2 |
| Bytes on disk | Identical | Identical | Identical |
| Style | Double extension | Single extension (less common) | Single extension (most common) |
| Linux / macOS support | Universal | Universal (via tar -xjf) |
Universal (via tar -xjf) |
| 7-Zip / PeaZip / WinRAR | Yes | Yes | Yes |
| Windows Explorer (built-in) | Recognized in Win 11 24H2+ | Treated as generic file | Treated as generic file |
| Email/upload filter risk | Higher (two dots) | Lower | Lower |
| MIME type | application/x-bzip2 | application/x-bzip2 | application/x-bzip2 |
| Format | Algorithm | Typical ratio vs raw | Decompression speed | Best for |
|---|---|---|---|---|
| tar.gz / tgz | DEFLATE (gzip) | Baseline | Fastest | General sharing, log archives |
| tar.bz2 / tz2 / tbz2 | Burrows-Wheeler (bzip2) | ~10-15% smaller than gzip | ~6x slower than gzip | Source code, text-heavy archives |
| tar.xz / txz | LZMA2 (xz) | ~15-30% smaller than bzip2 | Slower than gzip, faster than bzip2 decode | Software distribution, large datasets |
| zip | DEFLATE | Similar to gzip | Fast, random access | Cross-platform compatibility |
| 7z | LZMA / LZMA2 | Similar to xz, sometimes better | Moderate | Windows-friendly high compression |
No — it's the same bzip2-compressed tar archive, just with a single-extension filename instead of the double-extension .tar.bz2. Tools that can open one can open the other; tar -xjf archive.tz2 works identically to tar -xjf archive.tar.bz2 on Linux and macOS. Our converter does not recompress, decompress, or repackage the content — it renames the container so the bytes stay byte-for-byte identical.
.tbz2 (and its shorter cousin .tb2) caught on as the conventional single-extension form for bzip2-compressed tar — most documentation, package mirrors, and archive tools list those first. .tz2 exists as a valid variant (PeaZip and several tar implementations accept it), but it never reached the same adoption. If you have a choice, .tbz2 is the safer default for general distribution; pick .tz2 only when a downstream system specifically expects it.
Yes. 7-Zip and PeaZip both sniff the magic bytes (BZh for bzip2) rather than trusting the extension, so they identify and unpack the archive correctly. On Linux/macOS, tar -xjf file.tz2 works because -j forces bzip2 mode regardless of extension. Auto-detect via tar -xaf also handles it on GNU tar 1.22+. If a tool refuses to open it, rename back to .tar.bz2 — no data has changed.
No. The inner tar stream (file paths, permissions, ownership, timestamps, symlinks, hardlinks) is preserved exactly. Because no decompression happens, even file modification times inside the archive — and the SHA-256 of the inner tar — remain identical. You can verify with bunzip2 -c file.tar.bz2 | sha256sum and bunzip2 -c file.tz2 | sha256sum after the rename; the hashes will match.
The bzip2 format itself imposes no archive-size limit — bzip2 streams are made of independent blocks up to 900 KB and any number of blocks can be concatenated, so multi-gigabyte .tar.bz2/.tz2 files are routine on Linux distros. Our online uploader has a per-file size cap shown in the upload widget; for very large archives, command-line mv archive.tar.bz2 archive.tz2 is the fastest local equivalent.
Yes. Add multiple .tar.bz2 files in one session — they'll all be renamed to .tz2 in parallel. If you set "Combine?" to Single Archive, the uploader will instead bundle the inputs into one new .tz2 (re-archiving and re-compressing in that case). For a pure rename, keep "Individual Archives" selected.
Same conversion in the other direction: use our TZ2 to TAR.BZ2 converter. It is also a pure rename — your original archive's bytes and inner contents are preserved. If you want to actually re-compress (smaller files via xz, or faster decode via gzip), try TAR.BZ2 to TAR.XZ or TAR.BZ2 to TAR.GZ instead.
Because recompression takes minutes-to-hours on a large archive and changes the underlying checksum — breaking reproducible-build pipelines, mirror-sync diffs, and any signed manifests that reference the original hash. A pure extension rename is instant, deterministic, and keeps every cryptographic signature on the inner tar valid. Only switch compression algorithms when you actually need a different ratio or speed profile.
Files are uploaded over HTTPS, processed on our servers, and deleted automatically after a short retention window. No watermarks, no sign-up, and we don't read or modify the contents of your archive — for an extension-only conversion, the bytes are passed through unchanged. For maximum local control over sensitive archives, you can also rename .tar.bz2 to .tz2 directly on your machine with mv archive.tar.bz2 archive.tz2 and skip the upload entirely.