TAR.BZ (TBZ)到CPIO转换器

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

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

如何转换TAR.BZ到CPIO

1

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

2

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

3

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

关于格式

TAR.BZ is a compound archive format pairing the TAR) archiver with bzip compression. The TAR layer concatenates files into a single stream with full Unix metadata (permissions, ownership, timestamps, symlinks), and the bzip algorithm compresses the resulting stream. The bzip family of compressors uses block-sorting techniques derived from the Burrows-Wheeler transform, which rearranges data to group similar bytes together before applying move-to-front encoding and Huffman compression. This approach typically achieves better compression ratios than gzip/Deflate, particularly on text and source code. TAR.BZ archives are common on Unix and Linux systems for distributing source packages and backups where improved compression over TAR.GZ is desired. One advantage is strong compression on text-heavy data — block-sorting algorithms excel at compressing source code, log files, and structured text, producing meaningfully smaller archives. The two-layer design is another practical strength: the TAR container handles archiving concerns (metadata, directory structure) while the compression layer operates on the full concatenated stream, maximizing cross-file redundancy exploitation. TAR.BZ files can be processed by standard Unix tools and extracted by 7-Zip, WinRAR, and other cross-platform archivers.
开发者: Julian Seward
首次发布: 1996
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