当前位置: 代码迷 >> Ruby/Rails >> tar命令出错: gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error
  详细解决方案

tar命令出错: gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error

热度:621   发布时间:2016-04-29 02:14:55.0
tar命令报错: gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error

系统:linux

问题:使用wget命令下载安装包,然后使用tar命令解压.tar.gz报错



?

gzip: stdin: not in gzip format

tar: Child returned status 1

tar: Error is not recoverable: exiting now

?

问题根源:下载的安装包损坏。我下载的是jdk,根本没注意包的大小(损坏包的大小是5k)

解决办法:如果不是一眼就看到包大小有问题,就把包下载到你本地,解压看一下。查看是否损坏.

? ? ? ? ? ? ? ? ? 从官网有时候获取的地址,都不一定行。实在不行,你就自己下载到本地,然后上传到服务器。

? ? ? ? ? ? ? ? ? ?再解压

?

其他问题:

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

解决办法:我没遇见过,网上都说是命令参数有问题

? ? ? ? ? ? ? ? ? 你可以:tar zxvf xxxxx.tar.gz ? 或者

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tar -zxvf xxxxx.tar.gz

?

补充:tar命令参数的涵义

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

?

?

  相关解决方案