Initializing... drag & drop files here
Supports: TAR.GZ
.tar.gz and its short form .tgz — they are the same format. Drop in several archives and each one converts in its own job.TAR.GZ — also written .tgz — is a TAR bundle (the Unix tape-archive format, introduced to Unix in January 1979) that has then been compressed with gzip. Gzip uses the DEFLATE algorithm defined in RFC 1952 (May 1996), the same algorithm ZIP uses internally. The result is the de-facto distribution archive of the Unix and Linux world: source tarballs, server backups, container layers, and software releases ship as TAR.GZ because it preserves Unix file permissions and ownership and decompresses fast on any Unix-like system.
The friction shows up the moment a TAR.GZ leaves that world. Reasons people convert it:
.tar.gz the way both do for ZIP. Converting to ZIP lets a non-technical recipient open the archive with built-in tools, no 7-Zip or WinRAR install required..tar.bz2; converting to TAR.BZ2 matches that house style.A conversion here is a full repack, not a rename: the tarball is decompressed, the file tree is read, and the files are written into the new container with the new compressor. The bytes inside your files are unchanged — archive conversion is lossless regardless of which format you pick.
| Format | Compressor | Typical ratio | Native double-click | Best for |
|---|---|---|---|---|
| TAR.GZ / TGZ | gzip (DEFLATE) | Good, fastest | Linux/Unix; not Windows/macOS | Source tarballs, backups, fast pack/unpack |
| ZIP | DEFLATE per-file | Good | Windows, macOS, Linux | Sharing with anyone; broad compatibility |
| 7Z | LZMA2 | Best of this list | None (needs 7-Zip) | Smallest archive, long-term storage |
| TAR.XZ | xz (LZMA) | Better than gzip | Linux/Unix; not Windows/macOS | Tighter Unix archives, distro packages |
| TAR.BZ2 | bzip2 | Better than gzip, slower | Linux/Unix; not Windows/macOS | Legacy Linux mirrors |
| TAR | none (bundle only) | 1:1 (no compression) | Linux/Unix tools | Re-processing, applying your own compressor |
| RAR | RAR | Good, proprietary | None (needs WinRAR) | WinRAR-based workflows |
Yes. .tgz is just the short, single-extension spelling of .tar.gz — both name a TAR bundle compressed with gzip, with identical bytes inside. The short form exists mostly because older filesystems (and some Windows tooling) preferred a single three-letter extension. This converter accepts either spelling and treats them the same, and converting "TAR.GZ to TGZ" simply renames the wrapper rather than re-compressing.
On Linux and macOS, tar -xzf archive.tar.gz in a terminal extracts it, and most Linux desktop archive managers open it on double-click. Windows 11 added native tar command-line support and, more recently, GUI extraction of tar-based archives, but for a non-technical recipient the safest path is still to convert TAR.GZ to ZIP, which every version of Windows and macOS opens with a double-click using built-in tools.
Both shrink it more than gzip, with a tradeoff. 7Z (LZMA2) usually produces the smallest archive of the common formats, but the recipient needs 7-Zip to open it. TAR.XZ (xz/LZMA) compresses tighter than gzip while keeping the familiar Unix tar layout, so it is the natural choice when you are staying in a Linux or distro-packaging context. If the recipient's toolset is unknown, 7Z gives the best size; if they live on Unix, TAR.XZ keeps things native.
No. Archive conversion is lossless — the converter decompresses the tarball, reads the exact file tree, and re-writes it into the new container. Your documents, code, and binaries come out byte-for-byte identical. The only thing that changes is the compression algorithm wrapping them, which affects file size and which program can open the archive, not the contents.
Partly. TAR is designed to store full Unix permissions and ownership, and ZIP can record Unix permission bits in its extra fields, but support varies by extractor — Windows Explorer ignores those bits entirely when unzipping. If preserving exact permissions and ownership matters (for example restoring a server backup), keep the archive in a tar-based format like TAR or TAR.XZ rather than ZIP.
Files are uploaded over an encrypted connection, processed on our servers, and deleted automatically after a few hours — no sign-up, no watermark, never shared or made public. There is no fixed per-file cap; the practical limit is your upload size and connection speed, so multi-gigabyte backups are fine if you can upload them. In our testing, a 180 MB .tar.gz of mixed source files re-packed to ZIP in well under a minute, with the output landing close to the original size since both formats use DEFLATE.