TAR.LZ (TLZ)到CPIO转换器

在线免费转换您的tar.lz文件为cpio文件

放置文件在这里. 1 GB 最大文件大小 或者 注册
Facebook Amazon Microsoft Tesla Nestle Walmart L'Oreal

如何转换TAR.LZ到CPIO

1

从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.

2

选择cpio或任何其他你需要的格式作为结果(支持超过200种格式)

3

让文件进行转换随后你可以下载你的cpio文件

关于格式

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.
开发者: Antonio Diaz Diaz
首次发布: 三月 2009
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 映像和包管理基础设施中依然活跃。
开发者: AT&T / Unix
首次发布: 1977