TAR到TAR.Z (TZ)转换器
在线免费转换您的tar文件为tar.z文件
tar
tar.z
如何转换TAR到TAR.Z
从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.
选择tar.z或任何其他你需要的格式作为结果(支持超过200种格式)
让文件进行转换随后你可以下载你的tar.z文件
关于格式
TAR(Tape Archive,磁带归档)是源自 1979 年 1 月 AT&T 贝尔实验室 Version 7 Unix 的归档格式,最初设计用于将文件备份写入磁带驱动器。与 ZIP 或 RAR 不同,TAR 是纯粹的归档格式,将多个文件串联成单个数据流而不进行压缩 — 每个文件前有一个 512 字节的头部块,包含文件名、权限、所有者、大小、修改时间和校验和,之后是填充至 512 字节边界的文件数据。该格式经过多次标准化演进:原始 V7 格式、POSIX.1-1988 ustar 格式(扩展路径长度并增加更多文件类型支持)以及 POSIX.1-2001 pax 格式(支持扩展属性、任意长度路径和大文件)。TAR 几乎总是与压缩工具配合使用 — gzip(.tar.gz/.tgz)、bzip2(.tar.bz2/.tbz2)、xz(.tar.xz)或其他工具 — 形成双层结构,压缩作用于整个数据流以获得最大效率。TAR 的一大优势是卓越的 Unix 元数据保真度 — 与大多数竞争格式相比,TAR 能更精确地保留权限、所有者、符号链接、硬链接、设备文件和扩展属性。通用可用性是另一核心优势:tar 是 POSIX 规范要求的工具,存在于每个类 Unix 系统上,Windows 和 macOS 上的工具也能原生处理 TAR 文件。TAR 至今仍是源代码分发、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.