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