RPM到TAR.Z (TZ)转换器
在线免费转换您的rpm文件为tar.z文件
rpm
tar.z
如何转换RPM到TAR.Z
从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.
选择tar.z或任何其他你需要的格式作为结果(支持超过200种格式)
让文件进行转换随后你可以下载你的tar.z文件
关于格式
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.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.