.tbz File Extension
.tbz file contains, how to open and extract it, how Poly supports it, and when another archive format may work better. File extension details for .tbz
Storage Only| File type | Bzip2-compressed TAR archive |
|---|---|
| MIME type | |
| Encoding | Binary TAR archive wrapped in a lossless Bzip2 stream |
| Operating systems | Windows, macOS, Linux |
| Opens with | 7-Zip, Apple Archive Utility, GNU tar, PeaZip |
| Poly support | Yes. Poly stores, syncs, shares, versions, and downloads .tbz files. |
| Indexed by Poly | Partial. Poly indexes the filename and ordinary file properties, not the compressed archive contents. |
| Preview in Poly | No. Download the file to inspect or extract it with an archive utility. |
| Poly agent | No. The Poly agent cannot read files inside the compressed archive. |
What kind of file is a .tbz?
A .tbz file is normally a TAR archive compressed with Bzip2. TAR supplies the member names, directory structure, permissions, and other archive metadata. Bzip2 then compresses that entire TAR byte stream losslessly. The result is also commonly named .tbz2 or .tar.bz2.
The usual MIME label is application/x-bzip2, an unregistered but widely used media type.1 A genuine Bzip2 stream starts with ASCII BZh, hexadecimal 42 5A 68, followed by a digit from 1 through 9. The digit records a block size from 100,000 to 900,000 bytes.2 After decompression, a normal .tbz payload has a TAR header rather than opening as an individual document.
archive.zip, archive.tar, or archive.tar.gz to archive.tbz does not convert it. Check the header and let an archive utility validate the complete stream.How do I open a .tbz on my computer?
- On Windows, use 7-Zip or PeaZip to inspect and extract the archive.
- On macOS, double-click it to try Archive Utility, or use
tarin Terminal. Apple's shell scripting guide identifies.tbzas a Bzip2-compressed tar archive suffix.3 - On Linux, GNU tar can identify the compression and extract the TAR members. Many desktop archive managers provide a graphical alternative.4
Inspect an unfamiliar archive before extracting it. With GNU tar, tar -tjf package.tbz lists the members and tar -xjf package.tbz -C empty-directory extracts them into a chosen directory. Review absolute paths, parent-directory references, symbolic links, and executables before writing anything outside an isolated folder.
Poly support for .tbz
Poly stores, syncs, shares, versions, and downloads .tbz files, and makes them searchable by filename and ordinary file properties. Poly does not currently infer Bzip2 from the .tbz suffix, decompress the stream, preview the archive, index member names or contents, or give the Poly agent access to files inside it.
Download the archive and extract it with a trusted local utility when you need its contents. Add the extracted files to Poly separately to receive the preview, search, metadata, and agent features available for their formats.
History of .tbz
Julian Seward released Bzip2 0.15 in July 1996, followed by the stable 1.0 line in 2000.5 Bzip2 replaced his earlier, incompatible bzip compressor and combined the Burrows-Wheeler block-sorting transform with Huffman coding.2
The compact .tbz suffix indicates the same two-layer arrangement as .tar.bz2: a TAR container inside Bzip2 compression. The Bzip2 1.0.8 manual recognizes .tbz and .tbz2 as TAR-related endings and restores either to a .tar filename during decompression.2
Working with .tbz and alternatives
Choose a package format based on who must open it:
| Format | Good fit | Main tradeoff |
|---|---|---|
.tbz | Existing Unix packages and Bzip2 workflows | Some tools recognize .tar.bz2 more readily |
| Gzip tarball | Broad Unix compatibility | Often compresses less than Bzip2 |
| XZ tarball | Compact software distribution | Higher compression time and memory use |
| Zstandard tarball | Fast modern compression and decompression | Older systems may need another tool |
| ZIP | Easy desktop sharing and per-file access | Uses a different container model |
Bzip2's CRC detects accidental corruption, but it does not authenticate the archive or make its members safe. Compressed data can expand substantially. Apply storage and time limits to untrusted files, and preserve important originals. Converting to ZIP or another tarball requires extraction or decompression followed by creation of a new archive. Changing only the suffix changes no bytes.
Footnotes
- Internet Assigned Numbers Authority. Media Types Registry. The application registry does not list
application/x-bzip2. ↩ - Julian Seward. bzip2 and libbzip2, version 1.0.8. The official manual documents the algorithm, header, block sizes, integrity checks, and recognized
.tbzsuffix. ↩ ↩2 ↩3 - Apple. Other Tools and Information. Apple's guide describes
.tbzas the suffix for a tar archive compressed with Bzip2. ↩ - Free Software Foundation. GNU tar: Creating and Reading Compressed Archives. GNU tar supports Bzip2 and can select compression from a filename suffix. ↩
- Library of Congress. bzip2 Format Description. The preservation description records the release history and incompatibility with the earlier bzip format. ↩