Linux decompress .tar.xz suffix file command

We first use the xz command to decompress the outer layer of the compressed package, and then use the tar command to decompress the package

xz -d zlib-1.2.11.tar.xz

Get zlib-1.2.11.tar

tar -xvf zlib-1.2.11.tar

Get zlib-1.2.11

Guess you like

Origin blog.csdn.net/Swallow_he/article/details/108342563