xz是比gzip更好的压缩工具,目前已经得到新版本tar的集成支持,所以使用非常方便。
压缩
tar cfJ win10.tar.xz win10.xml win10.qcow2
-J 参数表示使用xz压缩算法
-J
解压缩
tar xfJ win10.tar.xz
如果是早期tar版本,则采用管道
tar cf - directory/ | xz -z - > directory.tar.xz
unxz < file.tar.xz > file.tar xz -dc < file.tar.xz > file.tar
Create a tar.xz in one command
How do I uncompress a tarball that uses .xz?
Last updated 4 years ago