解决centos上解压文件报错:tar: Error is not recoverable: exiting now
时间:2017-10-15 10:44 来源:linux.it.net.cn 作者:IT
例如解压文件命令为:
tar -zxvf hadoop-2.6.2.tar.gz
解压时错误信息为:
gzip: stdin: unexpected end of file
tar: Unexpected EOF in archive
tar: Unexpected EOF in archive
tar: Error is not recoverable: exiting now
解决办法:
执行命令:
tar -xvf hadoop-2.6.2.tar.gz(去掉参数 “z” 即可。)
(责任编辑:IT)
例如解压文件命令为: tar -zxvf hadoop-2.6.2.tar.gz 解压时错误信息为: gzip: stdin: unexpected end of file tar: Unexpected EOF in archive tar: Unexpected EOF in archive tar: Error is not recoverable: exiting now 解决办法: 执行命令: tar -xvf hadoop-2.6.2.tar.gz(去掉参数 “z” 即可。) (责任编辑:IT) |