Way faster than bzip2, it's basically streaming compression with comparable compression levels.
tar -cvf - foo | zstd -f --no-progress -o foo.tar.zst
zstd -d -k -c -q foo.tar.zst | tar -xv
apt install -y zstd
yum install -y zstd
Way faster than bzip2, it's basically streaming compression with comparable compression levels.
tar -cvf - foo | zstd -f --no-progress -o foo.tar.zst
zstd -d -k -c -q foo.tar.zst | tar -xv
apt install -y zstd
yum install -y zstd