壓縮/解壓縮tar.zst檔案 套件安裝 sudo apt-get install zstd 建立tar.zst壓縮檔 1. 手動建立tar.zst壓縮檔 cd foo tar cvf foo.tar . zstd -z foo.tar 2. 一條指令建立tar.zst壓縮檔 使用目錄foo建立tar並用壓縮zstd tar -I zstd -cvf foo.tar.zst foo 解壓縮tar.zst檔案 1. 當前目錄解壓縮tar.zst tar -I zstd -xvf foo.tar.zst foo 2. 在目錄中解壓縮tar.zst mkdir bar tar -I zstd -xvf foo.tar.zst foo --directory bar