Convert TGZ to TAR — Free Online Converter
Convert Gzipped Tar Archive (.tgz) to Tape Archive (.tar) online for free. Fast, secure archive conversion with no watermarks or registration.
安全な転送
HTTPS暗号化アップロード
プライバシー優先
処理後にファイルを自動削除
登録不要
すぐに変換を開始
どこでも動作
あらゆるブラウザ、あらゆるデバイス
TGZからTARへの変換について
TGZ is a gzip-compressed tar archive using the short .tgz extension common in Slackware packages, Helm charts, and embedded build systems. TAR is the underlying uncompressed archival format — stripping the gzip layer from a .tgz produces the raw tar stream containing all files and metadata.
Converting TGZ to TAR decompresses the gzip layer to expose the uncompressed tar archive inside. This is equivalent to running `gunzip archive.tgz` and is useful when you need the raw tar for compression algorithm substitution, Docker layer operations, tar entry manipulation, or feeding into tools that require uncompressed tar input.
TGZをTARに変換する理由
Slackware package developers and maintainers sometimes need the uncompressed tar to inspect or modify package entries (install scripts, file permissions, directory layout) before recompressing. Helm chart developers may need to unpack, modify Chart.yaml or templates, and repackage. Direct tar manipulation is simpler without the gzip compression layer in the way.
Docker's build system and container layer management operate on uncompressed tar streams internally. Feeding raw .tar into Docker operations avoids redundant decompression. Similarly, switching to a different compressor (xz for Slackware's newer .txz format, zstd for faster decompression) requires the plain tar as an intermediate stage.
主な活用例
- Unpacking Slackware .tgz packages for modification of install scripts or file layouts before repackaging
- Preparing Helm chart .tgz files for template editing and repackaging after modifications