TAR.LZMA (TLZMA)到TAR.BZ (TBZ)转换器
在线免费转换您的tar.lzma文件为tar.bz文件
tar.lzma
tar.bz
如何转换TAR.LZMA到TAR.BZ
从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.
选择tar.bz或任何其他你需要的格式作为结果(支持超过200种格式)
让文件进行转换随后你可以下载你的tar.bz文件
关于格式
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.
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.