Home  >  Article  >  Operation and Maintenance  >  How to decompress tar.xz file under linux

How to decompress tar.xz file under linux

王林
王林Original
2020-03-25 17:18:185416browse

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.

How to decompress tar.xz file under linux

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn