TAR.XZ (TXZ)'den TAR.LZMA (TLZMA)'ye dönüştürücü
tar.xz dosyalarınızı tar.lzma'ye çevrimiçi & ücretsiz olarak dönüştürün
tar.xz
tar.lzma
TAR.XZ'i TAR.LZMA'ye dönüştürme yöntemi
Dosyaları bilgisayar, Google Drive, Dropbox, URL'den veya sayfa üzerinden sürükleyerek seçin.
tar.lzma ya da sonuç olarak ihtiyacınız olan diğer formatlardan birini seçin (200'den fazla format desteklenir)
Haydi dosyayı dönüştürün ve tar.lzma dosyanızı hemen sonra indirebilirsiniz
Formatlar hakkında
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.
TAR.LZMA is a compound archive format combining TAR archiving with the LZMA (Lempel-Ziv-Markov chain Algorithm) compression method developed by Igor Pavlov for the 7-Zip project around 1998. The TAR layer concatenates files with Unix metadata into a single stream, and the LZMA algorithm compresses it using a sophisticated combination of LZ77 dictionary matching with large dictionaries (up to 4 GB), Markov chain-based probability modeling, and range coding. LZMA was the predecessor to the LZMA2 algorithm used in XZ and 7Z formats. Compression ratios significantly exceed gzip and are comparable to bzip2 while offering substantially faster decompression. One advantage is the high compression ratio with fast extraction — LZMA decompresses at speeds close to gzip while achieving compression densities near bzip2 or better, making it efficient for distribution archives that are compressed once and extracted many times. The format is supported by tar's --lzma flag and by 7-Zip across all platforms. While TAR.LZMA has been largely succeeded by TAR.XZ (which uses LZMA2 in a more robust container with integrity checks), existing TAR.LZMA archives remain encountered in software distributions and backup systems that adopted the format before XZ became widely available.