TAR.BZ (TBZ)到TBZ2 (TAR.BZ2)转换器
在线免费转换您的tar.bz文件为tbz2文件
tar.bz
tbz2
如何转换TAR.BZ到TBZ2
从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.
选择tbz2或任何其他你需要的格式作为结果(支持超过200种格式)
让文件进行转换随后你可以下载你的tbz2文件
关于格式
TAR.BZ is a compound archive format pairing the TAR) archiver with bzip compression. The TAR layer concatenates files into a single stream with full Unix metadata (permissions, ownership, timestamps, symlinks), and the bzip algorithm compresses the resulting stream. The bzip family of compressors uses block-sorting techniques derived from the Burrows-Wheeler transform, which rearranges data to group similar bytes together before applying move-to-front encoding and Huffman compression. This approach typically achieves better compression ratios than gzip/Deflate, particularly on text and source code. TAR.BZ archives are common on Unix and Linux systems for distributing source packages and backups where improved compression over TAR.GZ is desired. One advantage is strong compression on text-heavy data — block-sorting algorithms excel at compressing source code, log files, and structured text, producing meaningfully smaller archives. The two-layer design is another practical strength: the TAR container handles archiving concerns (metadata, directory structure) while the compression layer operates on the full concatenated stream, maximizing cross-file redundancy exploitation. TAR.BZ files can be processed by standard Unix tools and extracted by 7-Zip, WinRAR, and other cross-platform archivers.
TBZ2(也写作 .tar.bz2)是一种复合归档格式,将 TAR) 归档与 bzip2 压缩相结合,bzip2 由 Julian Seward 开发,于 1996 年 7 月 18 日首次发布。TAR 层将文件与完整的 Unix 元数据串联成单个数据流,bzip2 使用 Burrows-Wheeler 块排序算法结合霍夫曼编码对结果进行压缩。bzip2 以块为单位(通常 900 KB)处理数据,对块施加 BWT 排序,然后依次进行游程编码、前移变换,最后进行霍夫曼编码。这一处理流程在大多数数据类型上通常比 gzip 获得 15-25% 更好的压缩率,在文本、源代码和结构化数据上效果尤为显著。在 XZ 广泛普及之前,TBZ2 曾是 Linux 和 Unix 系统上的标准高压缩归档格式。TBZ2 的一大优势是相比 TGZ 更好的压缩效果 — bzip2 始终能生成更小的归档,在分发大型源代码树或创建存储空间受限的备份时意义重大。基于块的架构提供了另一项优势:如果归档损坏,数据丢失仅限于受影响的块而非整个数据流,bzip2recover 工具可以从损坏文件中提取完好的块。TBZ2 受到 GNU tar 的 -j 标志支持,并被所有主流平台上的压缩工具识别。该格式在源码分发和备份工作流程中仍被广泛使用。