红联Linux门户
Linux帮助

gzip:stdin: not in gzip format tar:Child returned status 1

发布时间:2015-09-29 15:28:28来源:linux网站作者:nemo2011

在ubuntu下解压.tar.gz文件时,出现了:

gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error exit delayed from previous errors


解决办法:

tar -xf  filename.tar.gz

或者tar -xvf filename.tar.gz

都能够解压成功。


下面是选项的含义:

bz2格式用j
gz格式用z
c是创建
x是解压缩
v是详细信息
f是指定文件

可以man tar查看。


关于压缩软件gzip和xz的简单对比:http://www.linuxdiyf.com/linux/13436.html