How to decompress tar.xz file under linux

王林
Release: 2020-03-25 17:18:18
Original
5405 people have browsed it

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
Copy after login

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
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!