RPM到TAR.LZO (TLZO)转换器

在线免费转换您的rpm文件为tar.lzo文件

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

如何转换RPM到TAR.LZO

1

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

2

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

3

让文件进行转换随后你可以下载你的tar.lzo文件

关于格式

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 包格式之一,支撑着数百万服务器和工作站的软件管理。
开发者: Red Hat
首次发布: 1995
TAR.LZO is a compound archive format pairing TAR archiving with LZO (Lempel-Ziv-Oberhumer) compression, created by Markus Oberhumer in 1996. The TAR layer bundles files with Unix metadata, and the LZO algorithm compresses the stream prioritizing decompression speed above all else. LZO is an asymmetric compressor — it sacrifices compression ratio for extremely fast decompression, operating at speeds that approach raw memory bandwidth on modern hardware. This makes TAR.LZO ideal for scenarios where archives must be extracted quickly and frequently, such as real-time backup systems and embedded device firmware images. One advantage is decompression performance — LZO extraction is several times faster than gzip and an order of magnitude faster than bzip2, critical for time-sensitive operations like boot-time filesystem initialization or rapid backup restoration. The low CPU overhead during extraction is another strength, making TAR.LZO practical on resource-constrained embedded systems and for streaming decompression without buffering. The lzop command-line tool integrates with tar via pipeline, and the format is used in the Linux kernel's initramfs, Btrfs filesystem compression, and various real-time data processing systems where extraction latency matters more than archive size.
开发者: Markus Oberhumer
首次发布: 1996