ARC到TAR.7Z (T7Z)转换器
在线免费转换您的arc文件为tar.7z文件
arc
tar.7z
如何转换ARC到TAR.7Z
从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.
选择tar.7z或任何其他你需要的格式作为结果(支持超过200种格式)
让文件进行转换随后你可以下载你的tar.7z文件
关于格式
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.7Z is a compound archive format that combines the TAR container with 7-Zip's LZMA/LZMA2 compression. The TAR layer bundles multiple files into a single stream preserving Unix metadata (permissions, ownership, symlinks), while the outer 7Z compression applies LZMA or LZMA2 to the entire stream. This combination leverages LZMA's superior compression ratios — typically 30-70% better than gzip — making TAR.7Z one of the most space-efficient archive formats for Unix-style backups and software distribution. The solid-stream approach means compression can exploit redundancy across all archived files rather than compressing each file independently. One advantage is maximum compression density: the TAR.7Z combination often produces the smallest archives among common Unix archive+compression pairings. Broad tool support is another strength — tar and 7-Zip are available on all major platforms, and many modern tar implementations can create and extract TAR.7Z archives directly with the appropriate flag. The format is popular for distributing large source code trees and backup archives where minimizing transfer size justifies the additional compression time.