今天在linux下 用tar -zxvf xxx.tar.bz2 然后就报这个错. gzip: stdin: not in gzip formattar: Child returned status 1tar: Error exit delayed from previous errors 解决方案:压缩包没有用gzip格式压缩, 所以解压的时候也不用加上z.直接tar -jxvf 就可以了.…
解压tar.gz文件报错gzip: stdin: not in gzip format解决方法 在解压tar.gz文件的时候报错 1 2 3 4 5 [Sun@localhost Downloads]$ tar -zxvf clion-141.351.4.tar.gz   gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now 原来原因是这个压缩…
最近在部署环境,在安装memcached的过程中解压时, 解压命令:tar -zvxf memcached-1.4.34.tar.gz 遇到了一个问题, gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now 现在我提供一下我总结的解决方法: 方法一: #tar -vxf memcached-1.4.34.tar.gz  tar包压缩的时候用cv…
在部署tomcat的环境搞JDK的时候出现这个问题.分享一下. 解压命令:tar -zvxf memcached-1.4.34.tar.gz 遇到了一个问题, gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now 转载一下我看到的解决方法. 方法一: #tar -vxf memcached-1.4.34.tar.gz  tar包压缩的时候用cv…
转自:https://blog.csdn.net/LL_zhuo/article/details/44173355 遇到和这篇博文一样的问题了.用wget 从oracle官网下载jdk, http://download.oracle.com/otn-pub/java/jdk/8u40-b25/jdk-8u40-linux-x64.tar.gz 用 tar -vxf 命令怎么也打不开.原来这个链接下载到的是一个HTML文件,cat查看其内容发现是authorization认证失败.估计是和在浏览器…
转自:http://blog.sina.com.cn/s/blog_6f2274fb0100z026.html 今天在linux下 用tar -zxf xxx.tar.bz2 然后就报这个错. gzip: stdin: not in gzip formattar: Child returned status 1tar: Error exit delayed from previous errors 一开始我以为是压缩包坏的,去下其他的.下下来也是一样.然后仔细看了一下,原来这个压缩包没有用gzi…
压缩包是直接weget 后面加官网上的tar包地址获取的  [root@xuegod43 ~]# tar -zxvf /home/hadoop/hadoop-2.6.5-src.tar.gz gzip: stdin: not in gzip formattar: Child returned status 1tar: Error is not recoverable: exiting now[root@xuegod43 ~]# tar -xvf /home/hadoop/hadoop-2.6.5…
[root@hzp124 opt]# tar xzvf 1577255462-qypt.tar gzip: stdin: not in gzip formattar: Child returned status 1tar: Error is not recoverable: exiting now 很不小心的错误, 原因是:这个压缩包没有用gzip格式压缩,所以不用加z指令,使用tar xvf 1577255462-qypt.tar  即可. 下面附上tar的参数,供巩固: tar -c: 建立…
MongoDB解压报错gzip: stdin: not in gzip format的解决方法 在安装MongoDB时出现如下报错: [root@vm172--- mongodb]# tar -zxvf mongodb-linux-x86_64-.tgz gzip: stdin: not in gzip format tar: Child returned status tar: Error is not recoverable: exiting now 出现这种错误的排查方法如下: 1.用重命…
最近在阿里上买了个服务器玩,需要安装jdk,在解压过程中遇到了一些问题,又是一番Google度娘,终于解决了.问题原因让我有点无奈…… 输入 #tar -xvf jdk-8u131-linux-x64.tar.gz,执行命令后报错如下: gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now  有的网友说,报错原因是这个压缩包没有用gzip格式压…