在解压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
这样就可以了