RPM到TAR.XZ (TXZ)转换器
在线免费转换您的rpm文件为tar.xz文件
rpm
tar.xz
如何转换RPM到TAR.XZ
从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.
选择tar.xz或任何其他你需要的格式作为结果(支持超过200种格式)
让文件进行转换随后你可以下载你的tar.xz文件
关于格式
RPM(原为 Red Hat Package Manager 的缩写,现为递归缩写 RPM Package Manager)是由 Red Hat 为 Linux 发行版开发的软件包管理格式,于 1995 年随 Red Hat Linux 2.0 首次推出。RPM 文件将编译后的软件、配置文件和文档与丰富的元数据一起打包成结构化的二进制格式,由引导段(格式标识符)、签名头(完整性和真实性验证)、元数据头(包名、版本、描述、依赖列表、文件校验和及安装脚本)和压缩的 CPIO 归档载荷(包含实际文件)组成。rpm 工具和更高级的管理器(如 YUM 和 DNF)负责处理 RPM 包的安装、升级、验证和卸载。RPM 的一大优势是全面的依赖管理 — RPM 包声明其提供和需要的能力,使系统能够从已配置的软件源自动解析复杂的依赖链。内置的验证系统是另一项优势:rpm --verify 可对照存储的校验和、权限、所有者和时间戳检查每个已安装文件,检测未授权的修改或损坏。RPM 是 Red Hat Enterprise Linux、Fedora、CentOS、SUSE 和 openSUSE 等主要企业级 Linux 发行版的包管理基础。与 DEB 并列,RPM 是两大主流 Linux 包格式之一,支撑着数百万服务器和工作站的软件管理。
TAR.XZ is a compound archive format combining TAR archiving with XZ compression, developed by the Tukaani Project and led by Lasse Collin since 2009. The TAR layer bundles files preserving Unix metadata, and XZ applies LZMA2 compression within a robust container featuring CRC-32 and CRC-64 integrity checks, padding support for media storage, and a stream/block structure enabling parallel decompression. LZMA2 improves on LZMA with better handling of incompressible data and multi-threaded compression support. TAR.XZ has become the preferred distribution format for many open-source projects — the Linux kernel, GNU core utilities, and numerous other packages ship their source tarballs as .tar.xz files. One advantage is the best compression-to-decompression-speed ratio among widely supported formats — XZ achieves compression ratios comparable to 7Z while decompressing faster than bzip2, an ideal combination for software distribution. The built-in integrity verification is another strength: unlike raw LZMA streams, the XZ container includes checksums that detect corruption before data reaches the application layer. GNU tar supports TAR.XZ natively via the -J flag, and xz-utils are packaged in every major Linux distribution. The format has effectively replaced TAR.GZ and TAR.BZ2 as the default for source code distribution in the open-source ecosystem.