先查看文件真正的属性是什么? [root@xxxxx ~]# tar -zxvf tcl8.4.16-src.tar.gz  gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now [root@xxxxxx ~]# file tcl8.4.16-src.tar.gz tcl8.4.16-src.tar.gz: HTML document text…
最近在部署环境,在安装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…
压缩包是直接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…
细节描述: 问题如题所示:查找博客园和CSDN上查找问题,得到问题解决方法大致如下: 1 修改解压缩命令: 由 tar zxvf software_package.tar.gz变为tar xvf software_package.tar.gz,原因:压缩包没有用gzip格式压缩,故不用加z指令: 2 使用mv命令重命名文件,再使用解压缩命令 tar zxvf software_package.tar.gz,问题即可解决: 以上两种方法都使用了,还是没有解决该问题!!! 使用file命令查看在工程…
[root@Gris- FMIS2600bak]# tar -zxvf /home/oradata/FMIS2600DMP.tar.gz gzip: stdin: not in gzip format tar: Child returned status tar: Error is not recoverable: exiting now 由于该文件不是压缩文件,所以会报这个错误. 使用下面的命令,查看文件格式 file /home/oradata/FMIS2600DMP.tar.gz…
原因: 压缩包文件不完整(损坏或者其他原因) 比如今天下载的tomcat8,使用ubuntu的命令下载的 curl -O http://apache.mirrors.ionfish.org/tomcat/tomcat-8/v8.0.33/bin/apache-tomcat-8.0.33.tar.gz   结果下载完了之后不能解压,原因就是下载的压缩包不完整.然后在官网重新下了,通过ssh的sz命令传到了linux服务器上面就好了.    再用ssh链接ubuntu的时候还遇到了 一直连接不上的问…
tar解压bz2格式 报错 解决方法很简单,只要安装bzip2就行了,yum安装的命令如下: yum -y install bzip2 如果是无法联网,可以去官网下载安装包,进一步安装即可…
解压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 原来原因是这个压缩…
转自: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认证失败.估计是和在浏览器…
如下所示,使用tar -zxvf解压文件时遇到"gzip: stdin: not in gzip format"等错误: [root@DB-Server tmp]# [root@DB-Server tmp]# tar -zxvf Percona-XtraBackup-2.2.12-r8726828-el5-x86_64-bundle.tar gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error e…
[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: 建立…
最近在阿里上买了个服务器玩,需要安装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格式压…
解压某个文件时 #tar -zxvf xxxxx.tar.gz 出现下面的错误提示: gzip: stdin: not in gzip formattar: Child returned status 1tar: Error exit delayed from previous errors You used "tar -zxvf" for the second command. the 'z' option tells tar to use gzip to uncompress th…
今天在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 解压 tar.bz2文件出错 debian:/usr/src# tar jxf linux-2.6.26.tar.bz2tar: bzip2: Cannot exec: No such file or directorytar: Error is not recoverable: exiting nowtar: Child returned status 2tar: Error exit delayed from previous errors 解决办法安装bzip2软件…
转自: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…
执行解压命令,在解压.gz或者.bz2格式的文件的文件的时候可能会出现这样的错误提示 tar -zxvf rlwrap-0.30.tar.gz 报错如下 gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now 原因: 文件压缩的过程中压缩格式不同,后来改了后缀名. 解决办法: 1.首先用 file 命令查看该文件的真实属性 [sa@cistest…
# sudo tar zxvf ./jdk-7ull-linux-i586.tar.gz -C /usr/lib/jvm gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now 问题解决方法如下:将z参数换成j参数问题解决 bz 格式用 j gz 格式用 z 其他命令参数 c 是创建 x 是解压缩 v 是详细信息 f 是指定文件…
[root@Gris-11140 FMIS2600bak]# tar -zxvf /home/oradata/FMIS2600DMP.tar.gzgzip: stdin: not in gzip formattar: Child returned status 1tar: Error is not recoverable: exiting now 解决方法:去掉z参数,使用 tar -xvf 解压正常…
毕竟是生产..... 提示以下信息:  gzip: stdin: not in gzip format  tar: Child returned status 1  tar: Error is not recoverable: exiting now 原因是:这个压缩包没有用gzip格式压缩,所以不用加z指令 解决办法:使用 $ tar -xvf xxxx.tar.gz 命令(即去掉z参数)…
在Linux环境下,通过tar -zxvf 命令解压文件时遇到”gzip: stdin: not in gzip format“等错误:如图所示 root@cmfchina:/usr/java# tar -zxvf jdk-8u144-linux-x64.tar.gz gzip: stdin: not in gzip format tar: Child returned status tar: Error is not recoverable: exiting now 最终发现这个压缩包没有用g…
最近在linux下安装python时,解压Python.tgz文件时遇到一个问题:          gzip: stdin: not in gzip format      tar: Child returned status 1     tar: Error is not recoverable: exiting now 对比一下,最主要的问题是文件丢失,在未安装vmware tools的情况下,直接从主机下载好的文件拖入了虚拟机中导致文件丢失. 使用命令:ls -lht发现原本在windo…
使用tar解压文件提示gzip: stdin: not in gzip format错误 1. 问题描述 使用docker save xxxx > xxx.tar导出镜像,由于文件太大,需要split -b 3000m xxx.tar来分割文件,刻录到光盘然后导入到服务器上. 后面使用cat * | tar -xzv来解压压缩的镜像,随后使用docker load导入镜像. 开始的几次都没有问题,不过昨天同样的过程,提示gzip: stdin: not in gzip format. 2. 问题…
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.用重命…
在解压tar.gz文件的时候报错 tar -zxvf otp_src_18.3.tar.gz gzip: stdin: not in gzip format tar: Child returned status tar: Error is not recoverable: exiting now 可能是文件不支持 gzip格式,所以去掉z就可以了 tar -xvf otp_src_18..tar.gz…
0x00 报错截图 0x01 下载方式 下载地址是直接在oracle官网[复制链接地址]获得. 0x02 解决问题 查看一下下载的文件 发现下载下来的是HTML文件. 然后就去oracle官网抓包看了一下下载地址,发现真实的下载地址后面要加上AuthParam 复制下载地址重新wget一次就可以了(国外网站好像都这么慢). 解压…
aix上的oracle介质文件是10gr2_aix5l64_database.cpio.gz 解压方法: gunzip 10gr2_aix5l64_database.cpio.gz cpio -idmvc 10gr2_aix5l64_database.cpio 以上两步就可以了... aix5.3上解压zip文件: jar xvf  p6810189_10204_AIX5L.zip…
使用tar解压.tar.bz2文件: tar -jxvf xxxx.tar.bz2 报如下错误: 原因:未安装bzip yum -y install bzip2…
问题背景 我是在CentOS上面使用wget命令下载JDK8的源码之后,使用tar命令解压下载的文件,结果出现这样的错误: [root@VM_0_8_centos src]# wget https://download.oracle.com/otn-pub/java/jdk/8u201-b09/42970487e3af4f5aa5bca3f542482c60/jdk-8u201-linux-x64.tar.gz ............................ Saving to: ‘j…