TAR到TAR.BZ (TBZ)转换器
在线免费转换您的tar文件为tar.bz文件
tar
tar.bz
如何转换TAR到TAR.BZ
从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.
选择tar.bz或任何其他你需要的格式作为结果(支持超过200种格式)
让文件进行转换随后你可以下载你的tar.bz文件
关于格式
TAR(Tape Archive,磁带归档)是源自 1979 年 1 月 AT&T 贝尔实验室 Version 7 Unix 的归档格式,最初设计用于将文件备份写入磁带驱动器。与 ZIP 或 RAR 不同,TAR 是纯粹的归档格式,将多个文件串联成单个数据流而不进行压缩 — 每个文件前有一个 512 字节的头部块,包含文件名、权限、所有者、大小、修改时间和校验和,之后是填充至 512 字节边界的文件数据。该格式经过多次标准化演进:原始 V7 格式、POSIX.1-1988 ustar 格式(扩展路径长度并增加更多文件类型支持)以及 POSIX.1-2001 pax 格式(支持扩展属性、任意长度路径和大文件)。TAR 几乎总是与压缩工具配合使用 — gzip(.tar.gz/.tgz)、bzip2(.tar.bz2/.tbz2)、xz(.tar.xz)或其他工具 — 形成双层结构,压缩作用于整个数据流以获得最大效率。TAR 的一大优势是卓越的 Unix 元数据保真度 — 与大多数竞争格式相比,TAR 能更精确地保留权限、所有者、符号链接、硬链接、设备文件和扩展属性。通用可用性是另一核心优势:tar 是 POSIX 规范要求的工具,存在于每个类 Unix 系统上,Windows 和 macOS 上的工具也能原生处理 TAR 文件。TAR 至今仍是源代码分发、Linux 文件系统映像、容器层和系统备份的标准格式。
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.