TAR.XZ (TXZ)到TGZ (TAR.GZ)转换器
在线免费转换您的tar.xz文件为tgz文件
tar.xz
tgz
如何转换TAR.XZ到TGZ
从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.
选择tgz或任何其他你需要的格式作为结果(支持超过200种格式)
让文件进行转换随后你可以下载你的tgz文件
关于格式
TAR.XZ is a compound archive format combining TAR) archiving with XZ compression, developed by the Tukaani Project and led by Lasse Collin since 2009. The TAR layer bundles files preserving Unix metadata, and XZ applies LZMA2 compression within a robust container featuring CRC-32 and CRC-64 integrity checks, padding support for media storage, and a stream/block structure enabling parallel decompression. LZMA2 improves on LZMA with better handling of incompressible data and multi-threaded compression support. TAR.XZ has become the preferred distribution format for many open-source projects — the Linux kernel, GNU core utilities, and numerous other packages ship their source tarballs as .tar.xz files. One advantage is the best compression-to-decompression-speed ratio among widely supported formats — XZ achieves compression ratios comparable to 7Z while decompressing faster than bzip2, an ideal combination for software distribution. The built-in integrity verification is another strength: unlike raw LZMA streams, the XZ container includes checksums that detect corruption before data reaches the application layer. GNU tar supports TAR.XZ natively via the -J flag, and xz-utils are packaged in every major Linux distribution. The format has effectively replaced TAR.GZ and TAR.BZ2 as the default for source code distribution in the open-source ecosystem.
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 仍是默认选择。