tar解压包的时候出现错误 gzip: stdin: not in gzip format

Posted 法号阿兴

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tar解压包的时候出现错误 gzip: stdin: not in gzip format相关的知识,希望对你有一定的参考价值。

在Linux环境下,通过tar -zxvf 命令解压文件时遇到”gzip: stdin: not in gzip format“等错误:如图所示

1 root@xxxxxxxx:/usr/java# tar -zxvf jdk-8u144-linux-x64.tar.gz
2 gzip: stdin: not in gzip format
3 tar: Child returned status 1
4 tar: Error is not recoverable: exiting now

最终发现这个压缩包没有用gzip格式压缩,所以不用加z参数,囧(所以不是所有的解压包都得用 -zxvf)!

tar -zxvf jdk-8u144-linux-x64.tar.gz 改成 tar -xvf jdk-8u144-linux-x64.tar.gz

PS:对了,如果还是出现这个错误,那你就要考虑是不是你下载的压缩包有误了,检测压缩包是否完整无误的,因为压缩包不对也会导致这个错误。

 

PS:如有疑问,请留言,未经允许不得私自转载,转载请注明出处:http://www.cnblogs.com/xuliangxing/p/7427375.html

以上是关于tar解压包的时候出现错误 gzip: stdin: not in gzip format的主要内容,如果未能解决你的问题,请参考以下文章

tar解压提示 gzip: stdin: not in gzip format

gzip: stdin: not in gzip format tar: Child returned status 1. tar Error is not recoverable: exiting

tar命令--数据解档解压.tar.gz文件报错 gzip:stdin:not in gzip format

Linux gzip: stdin: not in gzip format

memcached解压报错gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recovera

gitgit push 压缩包 或者 rpm包 安装包 无法解压 gzip: stdin: not in gzip format