解压tar.gz文件的时候报错gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recov

在解压tar.gz文件的时候报错

[root@master software]# tar -xzvf /opt/software/eclipse-jee-luna-SR2-linux-gtk-x86_64.tar

gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error is not recoverable: exiting now

查了一下百度,原因是这个压缩包没有用gzip格式压缩,所以不用加z指令

[root@master software]# tar -xvf /opt/software/eclipse-jee-luna-SR2-linux-gtk-x86_64.tar

这样就可以了

上一篇:rsync同步遇到的报错和解决办法


下一篇:centos7 tar.gz zip 解压命令[转]