Initializing... drag & drop files here
Supports: ZIP
TAR.GZ (gzipped tar) is the standard archive format for Linux/Unix — used for software packages, npm tarballs, Docker contexts, and system backups. Converting ZIP to TAR.GZ is essential when deploying to Linux servers, publishing packages, or working with tools that expect tar.gz input. TAR.GZ also preserves Unix file permissions and ownership, which ZIP does not.
| Property | ZIP | TAR.GZ |
|---|---|---|
| Compression | DEFLATE | gzip |
| Speed | Fast | Fast |
| Unix permissions | Not preserved | Preserved |
| Individual file access | Random access | Sequential |
| Common use | Cross-platform | Linux, npm, Docker |
TAR.GZ is a tar archive compressed with gzip. It's the most common archive format on Linux/Unix — equivalent to .tgz.
Linux tools expect tar.gz format. TAR.GZ preserves Unix file permissions and ownership. Many deployment pipelines require tar.gz input.
Yes. Upload multiple ZIP files and select "Single Archive" to combine all contents.
Yes. Select "Individual Archives" to create a separate TAR.GZ for each uploaded ZIP.
Yes. TAR.GZ and .tgz are identical formats with different extensions.