tar.xz

来源:互联网 发布:linux创建用户名和密码 编辑:程序博客网 时间:2024/05/05 05:49

To compile a new kernel, I downloaded a linux-4.10.1.tar.xz package.
The method to unpack it is under below:

$xz -d ***.tar.xz$tar -xvf  ***.tar

This package is double-packed. One is xz, other one is tar. Or we can do this by only one command as:

$tar xvJf  ***.tar.xz
0 0