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