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

最近在研究log4j。在Log4j官网下载了tar.gz.文件。解压时候出现错误。

1. wget https://www.apache.org/dyn/closer.lua/logging/log4j/2.10.0/apache-log4j-2.10.0-bin.tar.gz. 很顺利压缩包下载了。

2. 解压文件

tar -zxvf apache-log4j-2.10.0-bin.tar.gz

出现下列错误:

3. 网上搜了各种solution都没有得到解决。

1)solution 1: 这个压缩包没有用gzip格式压缩,所以不用加z指令.解决方法:使用 $ tar -xvf xxxx.tar.gz 命令(即去掉z参数)

2)下载.zip 文件。也就是上图apache-log4j-2.10.0-bin.zip 文件,依然有错误。

RootCase:

这个问题苦恼了我很久,最后终于找到了问题,原来我的这个链接不是最终下载的链接。应该继续点进去,出现下图下面的才是正确的链接。问题解决。

原文地址:https://www.cnblogs.com/Jesse-Li/p/8446299.html

时间: 2024-11-02 17:51:38

gzip: stdin: not in gzip format tar: Child returned status 1. tar Error is not recoverable: exiting now的相关文章

加压压缩文件报错gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now

压缩包是直接weget 后面加官网上的tar包地址获取的 [[email protected] ~]# 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[[email protected] ~]# tar -xvf /home/hadoop/hadoo

解压.tar.gz出错gzip: stdin: not in gzip format tar: /Child returned status 1 tar: Error is not recoverable: exiting now

先查看文件真正的属性是什么? [[email protected] ~]# 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 [[email protected] ~]# file tcl8.4.16-src.tar.gz tcl8.4.16-src.tar.gz: HTML d

LINUX:解压问题tar: Child returned status

解压某个文件时 #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

解压tar.gz文件报错gzip: stdin: not in gzip format解决方法

解压tar.gz文件报错gzip: stdin: not in gzip format解决方法 在解压tar.gz文件的时候报错 1 2 3 4 5 [[email protected] 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 原来原因是这个

tar 报错gzip: stdin: not in gzip format

今天在linux下 用tar -zxf xxx.tar.bz2 然后就报这个错. gzip: stdin: not in gzip formattar: Child returned status 1tar: Error exit delayed from previous errors 解决方案:压缩包没有用gzip格式压缩, 所以解压的时候也不用加上z.直接tar -xf 就可以了.

gzip: stdin: not in gzip format

使用tar -zxvf 命令解压备份FMIS2600DMP.tar.gz报错 [[email protected] FMIS2600bak]# tar -zxvf /home/oradata/FMIS2600DMP.tar.gz gzip: stdin: not in gzip formattar: Child returned status 1tar: Error is not recoverable: exiting now 解决方法: 去掉z参数,使用 tar -xvf 解压正常 [[em

Linux gzip: stdin: not in gzip format

在解压tar.gz文件的时候报错 tar -zxvf otp_src_18.3.tar.gz gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now 可能是文件不支持 gzip格式,所以去掉z就可以了 tar -xvf otp_src_18.3.tar.gz 原文地址:https://www.cnblogs.com/arebirth/p/linu

解压缩报错tar: Error is not recoverable: exiting now

[[email protected] 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 解压正常

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

在Linux环境下,通过tar -zxvf 命令解压文件时遇到"gzip: stdin: not in gzip format"等错误:如图所示 1 [email protected]:/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: exitin