eclipse安装文件:eclipse-jee-kepler-R-linux-gtk-x86_64.tar.gz linux
在安装eclipse时,遇到以下错误:
tar: This does not look like a tar archive
tar: Skipping to next header
tar: Exiting with failure status due to previous errors eclipse
通常而言tar -zxvf filename.tar.gz就能够打开.tar.gz文件 this
参照了Ubuntu Forum一个老外的解决方法,能够这样解决:
I searched on the net and found lots of people running into this bug. Here is a simple solution that works for me:
gzip -d file.tar.gz
and then do
tar -xf file.tar
And it extracts without errors. spa
上述方式已经验证经过。 ip