TAR.Z (TZ)到CPIO转换器
在线免费转换您的tar.z文件为cpio文件
tar.z
cpio
如何转换TAR.Z到CPIO
从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.
选择cpio或任何其他你需要的格式作为结果(支持超过200种格式)
让文件进行转换随后你可以下载你的cpio文件
关于格式
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.
CPIO(Copy In, Copy Out)是一种 Unix 归档格式,可追溯至 1977 年 AT&T 贝尔实验室的 PWB/UNIX 系统,甚至早于 TAR 格式。其名称描述了该工具的原始操作方式:将文件复制进(copy in)归档和从归档复制出(copy out)。CPIO 以顺序方式存储文件,每个文件前有头部信息,包含文件名、inode 信息、权限、所有者、时间戳和文件大小,其后是文件数据本身。该格式存在多个变体:原始二进制格式、POSIX.1 定义的八位字节导向(ODC)格式、具有扩展设备和 inode 字段的 SVR4 newc 格式,以及添加校验和验证的 CRC 变体。与 TAR 不同,CPIO 从标准输入读取待归档文件列表,使其天然适合通过管道与 find 和其他 Unix 工具组合使用。CPIO 的一大优势是对 Unix 元数据的高保真保留 — 相比早期 TAR 实现,CPIO 能更准确地记录设备号、inode 信息和硬链接关系,使其适用于系统级备份和设备文件归档。该格式在 Linux 包管理中的核心角色是其另一重要价值:RPM 包格式使用 CPIO 作为其内部载荷容器,这意味着每个基于 RPM 的 Linux 安装都依赖于 CPIO 解压。虽然 TAR 在通用归档方面更为常见,但 CPIO 在系统管理、initramfs 映像和包管理基础设施中依然活跃。