幸福飞过海 - tar https://fengqi.me/tag/tar/ 如何解压 .zst 和 tar.zst 压缩文件 https://fengqi.me/unix/606.html 2022-02-07T15:51:00+00:00 .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?