解压缩报错:tar: Error is not recoverable: exiting now

在解压文件时报出如下错误:

[root@VM-0-16-centos home]# tar -zxvf mysql-8.0.22-linux-glibc2.12-x86_64.tar.xz

gzip: stdin: not in gzip format

tar: Child returned status 1

tar: Error is not recoverable: exiting now


解决方案:

去掉z,使用tar -xvf,

命令:tar -xvf mysql-8.0.22-linux-glibc2.12-x86_64.tar.xz

你可能感兴趣的:(解压缩报错:tar: Error is not recoverable: exiting now)