Home > Article > Operation and Maintenance > How to decompress tar.xz file under linux
Example: This kind of file is actually two-layer compression, the outer layer is .xz compression method, and the inner layer is .tar compression method.
Recommended related video tutorials: linux video tutorial
The decompression process is also divided into two levels:
xz -d mysql-8.0.18-linux-glibc2.12-x86_64.tar.xz
After that, the mysql-8.0.18-linux-glibc2.12-x86_64.tar file
will appear and then execute the command
tar xvf mysql-8.0.18-linux-glibc2.12-x86_64.tar
to complete the decompression.
Recommended tutorial: linux tutorial
The above is the detailed content of How to decompress tar.xz file under linux. For more information, please follow other related articles on the PHP Chinese website!