7Z到TAR.LZ (TLZ)转换器
在线免费转换您的7z文件为tar.lz文件
7z
tar.lz
如何转换7Z到TAR.LZ
从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.
选择tar.lz或任何其他你需要的格式作为结果(支持超过200种格式)
让文件进行转换随后你可以下载你的tar.lz文件
关于格式
7Z 是 7-Zip 的原生归档格式,由 Igor Pavlov 于 1999 年开发的开源文件压缩工具。该格式采用开放的模块化架构,支持多种压缩算法 — LZMA 和 LZMA2(默认算法)、适用于文本密集数据的 PPMd、BWT 以及 Deflate — 同一归档内的不同文件可分别选用不同算法。LZMA 的压缩率通常比基于 Deflate 的 ZIP 文件高出 30-70%,使 7Z 成为空间效率最高的通用归档格式之一。容器结构存储带有完整目录层级、时间戳和属性的文件,同时支持固实压缩(将多个文件视为连续数据流处理),在包含大量相似文件的归档中可进一步提升压缩率。加密方面采用 AES-256,密钥派生基于迭代 SHA-256 哈希,文件内容和文件名均可加密。7Z 的一大优势在于卓越的压缩密度 — 在大多数数据类型上,7Z 始终能生成比 ZIP 或 RAR 更小的归档,这在需要最小化存储或带宽时尤为重要。开放架构是另一项优势:格式规范和 7-Zip 源代码以 GNU LGPL 许可证公开发布,任何开发者都可以在无许可限制的情况下实现 7Z 支持。支持 7Z 的跨平台工具覆盖 Windows、macOS、Linux 及移动平台,该格式已被广泛认可为追求最大压缩率时的首选。
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.