DEB到TAR.LZ (TLZ)转换器
在线免费转换您的deb文件为tar.lz文件
deb
tar.lz
如何转换DEB到TAR.LZ
从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.
选择tar.lz或任何其他你需要的格式作为结果(支持超过200种格式)
让文件进行转换随后你可以下载你的tar.lz文件
关于格式
DEB 是 Debian 项目及其众多衍生发行版(包括 Ubuntu、Linux Mint 等基于 Debian 的 Linux 发行版)所使用的软件包格式。该格式于 1993 年 8 月随 Debian 项目创立而诞生,将编译后的软件二进制文件、配置文件、文档和安装脚本打包成结构化归档,用于自动化软件管理。DEB 文件实际上是一个 ar 归档,包含三个成员:debian-binary(记录格式版本的文本文件)、control.tar(包含包名、版本、依赖关系、维护者脚本等元数据)和 data.tar(实际要安装的文件,使用 gzip、xz 或 zstd 压缩)。dpkg 工具和更高级的包管理器(如 APT)负责处理 DEB 包的安装、依赖解析、升级和卸载。DEB 的一大优势是完善的依赖系统 — DEB 包声明精确的关系(depends、recommends、suggests、conflicts、replaces),使 APT 能够自动从软件源解析和安装整个依赖链。维护者脚本系统是另一项优势,允许包在安装前后及卸载时执行逻辑操作,例如创建系统用户、初始化数据库或注册服务。凭借 Debian 和 Ubuntu 在全球服务器、桌面和嵌入式 Linux 部署中的大量份额,DEB 与 RPM 并列为两大主流 Linux 包格式之一。
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.