ARC到TAR.LZO (TLZO)转换器
在线免费转换您的arc文件为tar.lzo文件
arc
tar.lzo
如何转换ARC到TAR.LZO
从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.
选择tar.lzo或任何其他你需要的格式作为结果(支持超过200种格式)
让文件进行转换随后你可以下载你的tar.lzo文件
关于格式
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.LZO is a compound archive format pairing TAR archiving with LZO (Lempel-Ziv-Oberhumer) compression, created by Markus Oberhumer in 1996. The TAR layer bundles files with Unix metadata, and the LZO algorithm compresses the stream prioritizing decompression speed above all else. LZO is an asymmetric compressor — it sacrifices compression ratio for extremely fast decompression, operating at speeds that approach raw memory bandwidth on modern hardware. This makes TAR.LZO ideal for scenarios where archives must be extracted quickly and frequently, such as real-time backup systems and embedded device firmware images. One advantage is decompression performance — LZO extraction is several times faster than gzip and an order of magnitude faster than bzip2, critical for time-sensitive operations like boot-time filesystem initialization or rapid backup restoration. The low CPU overhead during extraction is another strength, making TAR.LZO practical on resource-constrained embedded systems and for streaming decompression without buffering. The lzop command-line tool integrates with tar via pipeline, and the format is used in the Linux kernel's initramfs, Btrfs filesystem compression, and various real-time data processing systems where extraction latency matters more than archive size.