ARC到TAR.BZ (TBZ)转换器
在线免费转换您的arc文件为tar.bz文件
arc
tar.bz
如何转换ARC到TAR.BZ
从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.
选择tar.bz或任何其他你需要的格式作为结果(支持超过200种格式)
让文件进行转换随后你可以下载你的tar.bz文件
关于格式
ARC 是最早在个人电脑上广泛使用的压缩归档格式之一,由 System Enhancement Associates(SEA)公司的 Thom Henderson 于 1985 年为 MS-DOS 创建。该格式将多个文件合并到单个归档中,对每个文件单独压缩,支持多种压缩方法,包括不压缩(直接存储)、游程编码、霍夫曼编码和 LZW(Lempel-Ziv-Welch)变体。ARC 归档中的每个文件条目都有独立的头部信息,包含原始文件名、压缩和未压缩大小、时间戳、CRC 校验和以及压缩方法标识符。在 1980 年代中期,ARC 成为基于 DOS 的电子公告板系统(BBS)上的主流归档格式,在互联网时代到来之前,它是在线分发软件、文档和数据文件的主要手段。该格式引发了一场著名的法律纠纷 — Phil Katz 创建了一个兼容工具(PKARC),导致 SEA 对其提起诉讼,最终促使 Katz 开发了 ZIP 格式作为合法替代方案。ARC 的一大优势是其逐文件压缩方式,允许提取单个文件而无需解压整个归档。集成的 CRC 校验和提供了另一项优势,能在通过容易出错的调制解调器连接传输后可靠地验证数据完整性。虽然 ZIP 及更现代的格式在 1990 年代初取代了 ARC,但该格式作为数据压缩和文件分发演进史上的基础技术,具有重要的历史意义。
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.