TGZ (TAR.GZ)到TAR.Z (TZ)转换器
在线免费转换您的tgz文件为tar.z文件
tgz
tar.z
如何转换TGZ到TAR.Z
从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.
选择tar.z或任何其他你需要的格式作为结果(支持超过200种格式)
让文件进行转换随后你可以下载你的tar.z文件
关于格式
TGZ(也写作 .tar.gz)是类 Unix 系统上使用最广泛的复合归档格式,将 TAR) 归档与 gzip 压缩相结合。gzip 由 Jean-loup Gailly 和 Mark Adler 创建,于 1992 年 10 月 31 日首次发布,作为 Unix compress 工具的免费、无专利限制替代品。TAR 层将文件与完整的 Unix 元数据(权限、所有者、时间戳、符号链接、硬链接)打包成单个顺序数据流,gzip 使用 Deflate 算法(LZ77 字典匹配与霍夫曼编码的组合)对其进行压缩。生成的 .tar.gz 或 .tgz 文件是 Linux 和 Unix 平台上分发源代码、创建系统备份和打包软件的标准格式。TGZ 的一大优势是近乎普遍的支持 — TGZ 文件可在每个 Unix 系统、Windows(通过 7-Zip、WinRAR)和 macOS 上原生创建和解压,使其在接收方平台未知时成为最安全的选择。快速解压是另一项实用优势:gzip 解压速度明显快于 bzip2 或 xz,这对 CI/CD 流水线、容器映像层和自动化部署等对解压时间敏感的场景至关重要。GNU tar 通过 -z 标志原生支持 TGZ,该格式还是许多更高层级打包系统的基础。虽然 XZ 提供更好的压缩率,但在广泛兼容性和解压速度为优先考量时,TGZ 仍是默认选择。
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.