TAR.LZO (TLZO)'den TAR.BZ (TBZ)'ye dönüştürücü

tar.lzo dosyalarınızı tar.bz'ye çevrimiçi & ücretsiz olarak dönüştürün

Dosyaları buraya bırakın. 1 GB maksimum dosya boyutu veya Kaydol
için
Facebook Amazon Microsoft Tesla Nestle Walmart L'Oreal

TAR.LZO'i TAR.BZ'ye dönüştürme yöntemi

1

Dosyaları bilgisayar, Google Drive, Dropbox, URL'den veya sayfa üzerinden sürükleyerek seçin.

2

tar.bz ya da sonuç olarak ihtiyacınız olan diğer formatlardan birini seçin (200'den fazla format desteklenir)

3

Haydi dosyayı dönüştürün ve tar.bz dosyanızı hemen sonra indirebilirsiniz

Formatlar hakkında

TAR.LZO is a compound archive format pairing TAR archiving with LZO (Lempel-Ziv-Oberhumer) compression, created by Markus Oberhumer in 1996. The TAR layer bundles files with Unix metadata, and the LZO algorithm compresses the stream prioritizing decompression speed above all else. LZO is an asymmetric compressor — it sacrifices compression ratio for extremely fast decompression, operating at speeds that approach raw memory bandwidth on modern hardware. This makes TAR.LZO ideal for scenarios where archives must be extracted quickly and frequently, such as real-time backup systems and embedded device firmware images. One advantage is decompression performance — LZO extraction is several times faster than gzip and an order of magnitude faster than bzip2, critical for time-sensitive operations like boot-time filesystem initialization or rapid backup restoration. The low CPU overhead during extraction is another strength, making TAR.LZO practical on resource-constrained embedded systems and for streaming decompression without buffering. The lzop command-line tool integrates with tar via pipeline, and the format is used in the Linux kernel's initramfs, Btrfs filesystem compression, and various real-time data processing systems where extraction latency matters more than archive size.
Geliştirici: Markus Oberhumer
İlk yayın: 1996
TAR.BZ is a compound archive format pairing the TAR archiver with bzip compression. The TAR layer concatenates files into a single stream with full Unix metadata (permissions, ownership, timestamps, symlinks), and the bzip algorithm compresses the resulting stream. The bzip family of compressors uses block-sorting techniques derived from the Burrows-Wheeler transform, which rearranges data to group similar bytes together before applying move-to-front encoding and Huffman compression. This approach typically achieves better compression ratios than gzip/Deflate, particularly on text and source code. TAR.BZ archives are common on Unix and Linux systems for distributing source packages and backups where improved compression over TAR.GZ is desired. One advantage is strong compression on text-heavy data — block-sorting algorithms excel at compressing source code, log files, and structured text, producing meaningfully smaller archives. The two-layer design is another practical strength: the TAR container handles archiving concerns (metadata, directory structure) while the compression layer operates on the full concatenated stream, maximizing cross-file redundancy exploitation. TAR.BZ files can be processed by standard Unix tools and extracted by 7-Zip, WinRAR, and other cross-platform archivers.
Geliştirici: Julian Seward
İlk yayın: 1996