TAR to GZ Converter
Convert TAR to TAR.GZ online for free. Fast, secure archive conversion that preserves folder structure and file integrity. No software installation required.
| ファイル名 | サイズ | 変換先 |
|---|
ファイルと選択した出力形式を確認しています。
Convert TAR Archives in 3 Steps
デスクトップ アーカイブ ソフトウェアをインストールせずに、互換性、圧縮、または抽出のサポートを向上させるためにアーカイブ ファイルを再パッケージします。
Drag and drop your .tar file into the converter above, or click "Choose Files" to browse your device.
Click "Convert All" and our server re-packs your files from TAR into GZ format while preserving the complete folder structure.
Your converted .gz archive is ready instantly. Click Download to save it to your device.
Why Convert TAR to GZ
Gzip is the default compression tool on Linux and Unix systems. Source code tarballs, package distributions, and system backups throughout the open-source world use .tar.gz as the standard format.
Gzip offers a good balance between compression ratio and speed. Files compress and decompress quickly, making GZ suitable for real-time log compression, web server content encoding, and scripted workflows.
Web サーバーは gzip 圧縮を使用して、ブラウザーに配信される HTML、CSS、および JavaScript のサイズを削減します。最新のブラウザはすべて、ページの読み込みを高速化するために gzip コンテンツ エンコーディングをサポートしています。
Gzip works with Unix pipes, allowing on-the-fly compression and decompression without temporary files. Chain gzip with tar, cat, ssh, and other commands for efficient data processing pipelines.
Every Linux distribution, macOS installation, and Unix system includes gzip by default. Windows users can extract GZ files with 7-Zip, WinZip, or Windows Subsystem for Linux.
TAR vs GZ: Side-by-side
2 つの形式の技術的な比較 - どちらを使用するかを決定する場合、または変換中に何が変更されるかを確認する場合に役立ちます。
| プロパティ | TAR | GZ |
|---|---|---|
| フルネーム | Tape Archive | GNU Zip |
| 導入年 | 1979 | 1992 |
| 開発者/標準ボディ | AT&T Unix | GNUプロジェクト |
| MIMEタイプ | application/x-tar | アプリケーション/gzip |
| ファイル拡張子 | 。タール | .gz |
| 圧縮 | None (often paired with gzip → .tar.gz) | DEFLATE (single-file compression) |
| カラー/データ深度 | 該当なし | 該当なし |
| 最大寸法/サイズ | 8 EB ファイルサイズ | 4 GB uncompressed (typical) |
| 透明性 | いいえ | いいえ |
| アニメーション | いいえ | いいえ |
| 規格・仕様 | POSIX / IEEE 1003.1 | IETF RFC 1952 |
| こんな方に最適 | Unix / Linux バックアップ、ソースコード配布 | Single-file compression, often inside .tar.gz archives |
TAR形式について
TAR (Tape Archive) は、シーケンシャル テープ ドライブにデータを書き込むために 1979 年に作成された Unix ファイル アーカイブ形式です。 ZIP や 7Z とは異なり、TAR はファイルを独自に圧縮しません。Unix ファイルのアクセス許可、所有権、タイムスタンプ、シンボリック リンクを維持しながら、複数のファイルとディレクトリを単一のアーカイブにバンドルするだけです。このため、TAR は、Linux および macOS でのソフトウェア配布およびシステム バックアップの標準的な選択肢になります。
TAR は、ほとんどの場合、圧縮ツールと組み合わせられます。TAR.GZ (gzip) が最も一般的な組み合わせで、優れた速度と適切な圧縮を提供します。 TAR.BZ2 (bzip2) は処理速度は遅くなりますが、より優れた圧縮率を実現しますが、TAR.XZ (xz/LZMA2) は最小のアーカイブを生成します。 TAR は ZIP が破棄する完全な Unix ファイルシステム メタデータを保存するため、ソース コードのパッケージ化、サーバー構成の展開、およびラウンド トリップ後もファイル アクセス許可が存続する必要があるシステム イメージの作成には、TAR が依然として不可欠です。