如何解压 .zst 和 tar.zst 压缩文件
.zst
和 tar.zst
是使用 Facebook
开源的 Zstandard 算法压缩出来的文件。
tar
命令有个参数 -I(--use-compress-program)
可以指定压缩和解压缩使用的子命令,所以解压的完整命令如下:
tar --use-compress-program=unzstd -xvf archive.tar.zst
如果报错:zstd: Cannot exec: No such file or directory,请尝试使用 apt、yum等系统自带的包管理软件安装zstd。
参考:How can I decompress an archive file having .zst or tar.zst?