tar.gz Cheatsheet
- (1 min read)
| Format |
Compression Ratio |
Speed |
Best For |
| gzip (.tar.gz) |
Good |
Fast |
General use, maximum compatibility |
| bzip2 (.tar.bz2) |
Better |
Slow |
When size matters more than speed |
| xz (.tar.xz) |
Best |
Slowest |
Distribution archives, long-term storage |
| zstd (.tar.zst) |
Very good |
Very fast |
Backups, CI/CD pipelines, modern systems |
Commands for gzip and xz
tar -czf archive.tar.gz folder/
tar -tzf archive.tar.gz
tar -xzf archive.tar.gz
tar -xzf archive.tar.gz -C path/
tar -cJf archive.tar.xz folder/
tar -tJf archive.tar.xz
tar -xJf archive.tar.xz
tar -xJf archive.tar.xz -C path/