เครื่องมือแปลงไฟล์ TAR.LZ (TLZ) เป็น TAR.7Z (T7Z)
แปลงไฟล์ tar.lz ของคุณให้เป็น tar.7z ผ่านช่องทางออนไลน์ฟรี
tar.lz
tar.7z
วิธีแปลง TAR.LZ เป็น TAR.7Z
เลือกไฟล์จากคอมพิวเตอร์, Google Drive, Dropbox, URL หรือทำการลากไฟล์มาที่หน้า.
เลือกรูปแบบไฟล์ tar.7z หรือรูปแบบไฟล์อื่นตามต้องการเป็นผลลัพธ์(รองรับรูปแบบไฟล์มากกว่า 200 รูปแบบ)
ปล่อยให้แปลงไฟล์และคุณสามารถดาวน์โหลดไฟล์ tar.7z ของคุณได้หลังจากนั้น
เกี่ยวกับรูปแบบไฟล์
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.7Z is a compound archive format that combines the TAR container with 7-Zip's LZMA/LZMA2 compression. The TAR layer bundles multiple files into a single stream preserving Unix metadata (permissions, ownership, symlinks), while the outer 7Z compression applies LZMA or LZMA2 to the entire stream. This combination leverages LZMA's superior compression ratios — typically 30-70% better than gzip — making TAR.7Z one of the most space-efficient archive formats for Unix-style backups and software distribution. The solid-stream approach means compression can exploit redundancy across all archived files rather than compressing each file independently. One advantage is maximum compression density: the TAR.7Z combination often produces the smallest archives among common Unix archive+compression pairings. Broad tool support is another strength — tar and 7-Zip are available on all major platforms, and many modern tar implementations can create and extract TAR.7Z archives directly with the appropriate flag. The format is popular for distributing large source code trees and backup archives where minimizing transfer size justifies the additional compression time.