CAB到TAR.LZ (TLZ)转换器
在线免费转换您的cab文件为tar.lz文件
cab
tar.lz
如何转换CAB到TAR.LZ
从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.
选择tar.lz或任何其他你需要的格式作为结果(支持超过200种格式)
让文件进行转换随后你可以下载你的tar.lz文件
关于格式
CAB(Cabinet)是由微软开发的压缩归档格式,旨在实现高效的软件分发和 Windows 组件打包。该格式约于 1996 年推出,CAB 文件用作 Windows Installer 安装包(.msi)、Windows 系统更新、驱动分发和 ActiveX 组件下载的容器格式。该格式支持三种压缩算法 — MSZIP(微软的 Deflate 实现)、Quantum(统计压缩)和 LZX(一种针对可执行文件优化的 LZ77 变体结合霍夫曼编码)— 其中 LZX 通常能达到最高压缩率。CAB 归档将文件组织到文件夹(压缩单元)中,同一文件夹内的文件作为连续数据流进行压缩以提升压缩率,归档还可以跨多卷分布以便在容量受限的介质上分发。CAB 的一大优势是深度融入 Windows 生态系统 — 从操作系统安装介质到驱动包和系统更新,Windows 均可在无需第三方软件的情况下原生处理 CAB 文件。LZX 压缩算法是另一项优势,在编译代码和 PE 可执行文件上能实现特别高的压缩率,这与该格式在软件分发中的主要角色完美契合。微软的 makecab 工具随每个 Windows 安装提供,CAB 解压功能也内置于 Windows 资源管理器中。该格式持续作为企业和消费者环境中 Windows 部署和更新机制的基础设施。
TAR.LZ is a compound archive format combining TAR archiving with lzip compression, a format created by Antonio Diaz Diaz and first released in 2009. The TAR layer bundles files with full Unix metadata into a single stream, and lzip applies LZMA compression with a robust container that includes per-member CRC-32 integrity checking and clean member boundaries. Lzip was designed with long-term archival in mind — it produces a simple, well-documented format with strong error recovery properties: if part of a TAR.LZ file is corrupted, undamaged members can still be extracted, unlike monolithic compressed streams where corruption propagates. The compression ratios are essentially identical to LZMA/XZ since lzip uses the same LZMA algorithm. One advantage is archival resilience — the member-based structure means a multi-part archive can survive partial corruption without losing all data, critical for long-term storage. The clean, minimal format design is another strength: lzip has a simple specification that independent implementations can follow precisely, reducing the risk of compatibility issues over decades of archival. TAR.LZ is used by the GNU Project for distributing source releases and is supported by GNU tar with the --lzip flag, as well as by plzip for parallel compression on multi-core systems.