Initializing... drag & drop files here
Supports: TZ2
.tz2 archives (also recognized as .tbz2, .tb2, or .tar.bz2). Batch upload is supported and your originals stay untouched — a new RAR is written alongside them.A .tz2 file (also written .tbz2, .tb2, or .tar.bz2) is a tar archive squeezed through the bzip2 block-sorting compressor — the standard way Linux and Unix projects ship source tarballs. RAR (Roshal Archive), created by Eugene Roshal and first released in 1993, is a proprietary format that compresses 10–30% tighter than ZIP on mixed media and is still the format of choice for game mods, scanlation packs, and large bundles that need recovery records. Converting TZ2 to RAR is useful when the recipient already lives in the WinRAR world, or when you want RAR's multi-volume split, AES-256 encryption, and built-in error correction on top of the original payload.
.rar natively (added with the September 2023 23H2 update via libarchive). Recipients who run Windows 10 or older almost always have WinRAR or 7-Zip already, both of which open RAR..part1.rar, .part2.rar) because of RAR's recovery records and split-volume support. Repacking a .tar.bz2 source dump as RAR puts it in the right idiom for those audiences..tar.bz2 can break everything past it..part1.rar, .part2.rar, …) is still one of the smoothest ways to break a multi-gigabyte archive across USB sticks, Discord's 10 MB free attachment cap, or a flaky upload that needs resumable chunks..tar.bz2 but your downstream packaging step expects .rar, this conversion saves the manual decompress-then-recompress round-trip.| Property | TZ2 (TAR.BZ2) | RAR (RAR5) |
|---|---|---|
| Creator / Owner | tar (1979, AT&T) + bzip2 (Julian Seward, 1997); open formats | Eugene Roshal / RarLab (proprietary spec) |
| Compression algorithm | bzip2 (Burrows–Wheeler + RLE + Huffman) | Proprietary RAR algorithm (PPM + LZSS-derived, with media filters) |
| Typical ratio vs raw | 70–90% smaller on text/source | Best-in-class on mixed media; often 5–10% tighter than ZIP |
| Max dictionary size | 900 KB (bzip2 block size) | 1 GiB (RAR5, 64-bit) |
| Random access to one file | No — must stream the whole bzip2 layer | Yes — central listing indexes every entry |
| Per-file vs solid | Solid (tar concatenated, compressed as one stream) | Choose per-archive: solid for max ratio, non-solid for random access |
| Preserves Unix permissions / symlinks | Yes (tar header carries mode, owner, mtime, symlinks) | Yes (RAR5 stores Unix attributes; older RAR4 was Windows-centric) |
| Multi-volume splits | Manual (split with split or tar --tape-length) |
Native (.part1.rar, .part2.rar, …) |
| Recovery records | None | Optional; survive limited corruption |
| Encryption | None in the format itself; wrap in GPG | AES-256 (RAR5), including filename encryption |
| Creating new archives | Free, ubiquitous (tar, 7-Zip, every Linux distro) |
Paid WinRAR licence to create; free to extract |
| Native Windows 11 read support | Yes, since 23H2 (Sept 26, 2023) | Yes, since 23H2 (Sept 26, 2023) |
| Native macOS support | Yes (tar + bzip2 shipped with macOS) |
No — needs Keka, The Unarchiver, or BetterZip |
| Common extension | .tar.bz2, .tbz2, .tb2, .tz2 |
.rar, .part1.rar, .r00 (legacy RAR4) |
| Output | Compression | Best for | xconvert |
|---|---|---|---|
| RAR | RAR5 (PPM + LZSS) | Multi-volume splits, recovery records, AES-256 password | this page |
| ZIP | Deflate | Cross-platform handoff, email, cloud preview | convert-tz2-to-zip |
| 7z | LZMA2 | Smallest size with an open format, password-encrypted bundles | convert-tz2-to-7z |
| tar | None (store only) | Backup that you will compress separately | convert-tz2-to-tar |
| tar.gz | gzip | Linux package source, faster than bzip2 | convert-tz2-to-tar.gz |
| Loose files | None | When you just want the contents, not another archive | extract-tz2 |
Yes — all four extensions describe a tar archive that has been compressed with bzip2. The byte contents are identical; only the filename suffix differs. The short .tz2 and .tb2 forms came from legacy DOS and 8.3 filesystem habits, plus a handful of older FTP servers and mail clients that choke on filenames with two dots. xconvert recognizes all four spellings interchangeably.
It depends on the payload. On text-heavy or source-code archives, bzip2 often beats RAR by a small margin, so the RAR may end up 0–10% larger. On mixed media (images, audio, executables), RAR usually catches up or wins, and the result is often the same size or slightly smaller. If size is the priority and the recipient is comfortable with another format, 7z typically beats both bzip2 and RAR with LZMA2.
Not from this conversion page. RAR5 supports AES-256 encryption of file data and the filename listing, but xconvert's TZ2-to-RAR pipeline currently produces unencrypted archives. If you need password protection, do the conversion here, then re-pack the result locally with WinRAR (or 7-Zip's RAR support is read-only, so use WinRAR's -hp<password> flag for filename encryption too).
RAR5 stores Unix attributes (mode, owner UID/GID, mtime, symlinks) in the per-file header, and our converter writes those fields when they are present in the source TZ2's tar header. Most Windows GUIs ignore Unix metadata and unpack everything as regular files owned by the current user; if permissions and symlinks matter, extract on Linux or macOS with unrar x (preserves attributes by default) or keep the archive in a tar-based format.
The RAR format and its compression algorithm are proprietary to RarLab. WinRAR is technically shareware — you can use it for free during the 40-day trial, and most people just keep using it after — but commercial creation of .rar files requires a paid licence (around USD 29 for a single user as of 2026, with multi-seat discounts). Extraction has always been free: RarLab publishes an open-source unrar source-available library that 7-Zip, libarchive, Keka, and xconvert all build on.
.rar natively now, or do I still need WinRAR?For reading RAR files, you no longer need WinRAR on Windows 11 version 23H2 or later (released September 26, 2023). File Explorer can extract .rar, .7z, .tar, .tar.bz2, .tar.gz, .tar.xz, and several other archive formats via the bundled libarchive library. Password-encrypted RAR archives still need a third-party tool. Creating RAR archives from File Explorer is not supported yet — Microsoft has indicated future updates may add this, but on Windows 11 today you still need WinRAR (or this converter) to produce them.
Three reasons people still pick RAR over ZIP in 2026: (1) recovery records — RAR can embed redundant data that survives limited corruption; ZIP cannot. (2) Multi-volume archives — RAR's .part1.rar/.part2.rar split is cleaner than ZIP's .z01/.z02 split and is what most game-mod and scanlation communities expect. (3) Slightly better compression on mixed media. If none of those matter, ZIP is the more universal choice — every OS opens it without a third-party tool.
A single upload is capped well above typical source-tarball sizes (most .tar.bz2 files in the wild are under 200 MB). For multi-gigabyte archives, split with tar --tape-length=2000000 first to produce ~2 GB volumes, or use the Individual Archives mode to convert each TZ2 separately and let RAR's native volume split handle the rest.
Files are processed on our servers and removed shortly after your session ends. We do not index, share, or inspect the contents. For sensitive payloads, encrypt with GPG before uploading and decrypt the resulting RAR locally — or pick a format that has built-in encryption like 7z. For the reverse direction, see RAR to TAR.BZ2.