tar 报错gzip: stdin: not in gzip format

今天在linux下 用tar -zxf xxx.tar.bz2

然后就报这个错。

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

解决方案:压缩包没有用gzip格式压缩, 所以解压的时候也不用加上z。直接tar -xf 就可以了。

时间: 2024-10-13 06:37:41

tar 报错gzip: stdin: not in gzip format的相关文章

解压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 原来原因是这个

加压压缩文件报错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

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

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

Bash On Windows(WSL)无法运行32Bit程序,报错cannot execute binary file: Exec format error解决办法

一.背景 windows下用linux工具,但32位的却无法运行报错 aapt: cannot execute binary file: Exec format error file aapt aapt: ELF 32-bit LSB executable, Intel 80386, version 1 (GNU/Linux), statically linked, for GNU/Linux 2.6.24 二.解决办法 github上@Froosh给出了他的解决方案,通过安装qemu来运行32

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

毕竟是生产..... 提示以下信息:  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参数) 原文地址:https://www.cnblogs.com/wqbin/p/11805150.html

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: 这