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.
Bezpečný přenos
Šifrované nahrávání přes HTTPS
Ochrana soukromí
Soubory automaticky smazány po zpracování
Bez registrace
Začněte převádět okamžitě
Funguje všude
O převodu TGZ na 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.
Proč převádět TGZ na 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.
Běžné případy použití
- 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