TAR.LZMA (TLZMA)到TBZ2 (TAR.BZ2)转换器
在线免费转换您的tar.lzma文件为tbz2文件
tar.lzma
tbz2
如何转换TAR.LZMA到TBZ2
从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.
选择tbz2或任何其他你需要的格式作为结果(支持超过200种格式)
让文件进行转换随后你可以下载你的tbz2文件
关于格式
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.
TBZ2(也写作 .tar.bz2)是一种复合归档格式,将 TAR 归档与 bzip2 压缩相结合,bzip2 由 Julian Seward 开发,于 1996 年 7 月 18 日首次发布。TAR 层将文件与完整的 Unix 元数据串联成单个数据流,bzip2 使用 Burrows-Wheeler 块排序算法结合霍夫曼编码对结果进行压缩。bzip2 以块为单位(通常 900 KB)处理数据,对块施加 BWT 排序,然后依次进行游程编码、前移变换,最后进行霍夫曼编码。这一处理流程在大多数数据类型上通常比 gzip 获得 15-25% 更好的压缩率,在文本、源代码和结构化数据上效果尤为显著。在 XZ 广泛普及之前,TBZ2 曾是 Linux 和 Unix 系统上的标准高压缩归档格式。TBZ2 的一大优势是相比 TGZ 更好的压缩效果 — bzip2 始终能生成更小的归档,在分发大型源代码树或创建存储空间受限的备份时意义重大。基于块的架构提供了另一项优势:如果归档损坏,数据丢失仅限于受影响的块而非整个数据流,bzip2recover 工具可以从损坏文件中提取完好的块。TBZ2 受到 GNU tar 的 -j 标志支持,并被所有主流平台上的压缩工具识别。该格式在源码分发和备份工作流程中仍被广泛使用。