Công cụ chuyển đổi TAR.BZ (TBZ) sang TAR.XZ (TXZ)

Chuyển đổi file tar.bz sang tar.xz trực tuyến và miễn phí

Thả tập tin ở đây. 1 GB Kích thước file tối đa hoặc là Đăng ký
đến
Facebook Amazon Microsoft Tesla Nestle Walmart L'Oreal

Làm thế nào để chuyển đổi TAR.BZ sang TAR.XZ

1

Lựa chọn các tập tin từ Máy tính, Google Drive, Dropbox, URL hoặc bằng cách kéo tập tin vào trang này.

2

Chọn tar.xz hoặc bất kỳ định dạng nào khác bạn cần chuyển đổi sang (hỗ trợ hơn 200 định dạng)

3

Hãy để tập tin chuyển đổi và bạn có thể tải tập tin tar.xz của bạn xuống ngay sau đó

Về các định dạng

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.
Nhà phát triển: Julian Seward
Phát hành lần đầu: 1996
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.
Nhà phát triển: Lasse Collin / Tukaani Project
Phát hành lần đầu: 2009