CAB到TAR.Z (TZ)转换器
在线免费转换您的cab文件为tar.z文件
cab
tar.z
如何转换CAB到TAR.Z
从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.
选择tar.z或任何其他你需要的格式作为结果(支持超过200种格式)
让文件进行转换随后你可以下载你的tar.z文件
关于格式
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.Z is a compound archive format combining TAR archiving with Unix compress, one of the earliest general-purpose data compression tools available on Unix systems. The compress utility, originally written by Spencer Thomas, Joe Orost, and others around 1985, implements adaptive LZW (Lempel-Ziv-Welch) compression — a dictionary-based algorithm that builds a translation table during compression and decompression. The TAR layer bundles files with full Unix metadata into a single stream, and compress reduces the stream size typically by 40-60%. TAR.Z was the standard compressed archive format on Unix systems throughout the 1980s and early 1990s, before gzip emerged as a patent-free replacement. The LZW algorithm used by compress was subject to patent claims by Unisys (holders of the LZW patent through Sperry), which motivated the development of gzip as an unencumbered alternative. One advantage is universal legacy compatibility — TAR.Z files can be extracted on any Unix system, including very old installations where newer compression tools may not be available. The format's historical ubiquity means that decades of archived software, documentation, and system backups exist as TAR.Z files. While TAR.GZ and TAR.XZ have replaced TAR.Z for new archives, the uncompress/zcat tools remain standard on all Unix-like systems, ensuring continued accessibility of legacy archives.