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