报错信息 [root@localhost mysql-8.0.31]# tar -zxvf mysql-8.0.31-1.el7.x86_64.rpm-bundle.tar gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now 问题分析 因为压缩包是以.tar后缀,而不是*.tar.gz,因此实际上并没有真正用到gzip,所以解压缩的命令需要去除z参数 解决方案 使用 tar -xvf 解压,去除z参数