Zstandard or zstd is superior to gzip in almost all measurable ways.
Here is how to make a zstd compressed tar archive:
tar --use-compress-program=zstd -cvf foo.tar.zst foo
To extract:
tar --use-compress-program=zstd -xvf foo.tar.zst
Zstandard or zstd is superior to gzip in almost all measurable ways.
Here is how to make a zstd compressed tar archive:
tar --use-compress-program=zstd -cvf foo.tar.zst foo
To extract:
tar --use-compress-program=zstd -xvf foo.tar.zst