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

这篇具有很好参考价值的文章主要介绍了gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

tar解压报错问题

如果有新的报错原因会持续更新解决方案

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,linux,linux,服务器,运维

问题产生原因及解决方案

所下载的并不是压缩包,是一个网页文件,可以用 file 目标文件查看目标文件类型

gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting,linux,linux,服务器,运维

如果下载的是文本类型,是肯定不能解压的
这是需要删除该文本文件,去下载正确的tar包重新解压即可

gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting,linux,linux,服务器,运维


附tar解压命令 tar -zxvf file文章来源地址https://www.toymoban.com/news/detail-559004.html

到了这里,关于gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • C/C++:[Error] ld returned 1 exit status 解决方案

    好久没用了,今天写了会儿代码,各种BUg,emmmmmm 出现了很多次以下这个问题: [Error] ld returned 1 exit status 可能问题解决方式: 常见的语法/单词拼写错误:常见的Main,printf,scanf等拼写错误 函数名或者声明有问题 最常见: 运行程序没关(运行未结束状态的小黑框没有叉掉)。如

    2024年02月04日
    浏览(45)
  • collect2.exe: error: ld returned 1 exit status分析与解决

    提示:以下是本篇文章正文内容 Windows下进行网络编程,devc++,运行.cpp程序时报如下错: 报错图如下: 具体是哪一行错误也不跳转。 自己百度了一下,网络上解决办法无非如下: 1、程序没有主函数 2、printf/scanf书写错误 3、在主函数中出现自定义函数名书写错误(即出现在

    2023年04月08日
    浏览(37)
  • docker load -i导入镜像失败:Error processing tar file(exit status 1): unexpected EOF

    导入镜像失败了,不知道啥原因。。。 后来发现,我的tar包大小不对,只有50多兆,正常应该400多兆的,可能是什么时候拷文件时,拷失败了。。。 把正确的tar包换过来就好了 20230816 Docker 是一种开源的应用容器引擎,允许开发者将应用及其依赖打包到一个可移植的容器中,

    2024年02月06日
    浏览(52)
  • python自带的venv创建虚拟环境报错Error: Command returned non-zero exit status 1.

    Windows 10 教育版64位 Python 3.6.3 今天使用 python 自带的 venv 使用如下的命令: 创建虚拟环境报错: Error: Command \\\'[\\\'E:\\\\Code\\\\Python\\\\Git\\\\test1\\\\aaa\\\\Scripts\\\\python.exe\\\', \\\'-Im\\\', \\\'ensurepip\\\', \\\'--upgrade\\\', \\\'--default-pip\\\']\\\' returned non-zero exit status 1.) 这个时候,回到你需要创建 venv 的路径,发现我的新环境

    2024年02月16日
    浏览(45)
  • 解决报错:collect2: error: ld returned 1 exit status Makefile:103: recipe for target ‘ ‘ failed

    提示:这里简述项目相关背景: 项目编译时报错如下: collect2: error: ld returned 1 exit status Makefile:103: recipe for target ‘AAA’ failed make: *** [AAA] Error 1 这个错误通常是由于链接器ld在链接过程中发生了错误,导致无法生成可执行文件。通常情况下,这种错误是由于缺少必要的库文件

    2024年02月07日
    浏览(33)
  • 【已解决】TypeError: _ctx.$t is not a function when using $t in child component

    项目使用的工具及版本     \\\"vue\\\": \\\"^3.2.13\\\",     \\\"vue-i18n\\\": \\\"^9.2.2\\\", 问题背景:前几天在做一个登录的小demo,然后因为没有怎么理解代码就跟着敲,然后运行的时候浏览器控制台就报错:TypeError:_ctx.$t is not a function when using $t in child component,如下图:  然后我就百度了一下i18n是什

    2024年02月16日
    浏览(44)
  • git-base打开后报错,Error: Could not fork child process: Resource temporarily unavailable (-1).

    前天打开git-base时,突然就出现如下的报错信息,而之前都是一直正常使用的; Error: Could not fork child process: Resource temporarily unavailable (-1). DLL rebasing may be required; see ‘rebaseall / rebase –help’. 看错误信息好像是无法派生子进程,资源不可用,最后按以下的几个步骤执行完后,可

    2024年02月06日
    浏览(33)
  • 【UNITY】报错3FormatException: Input string was not in a correct format.

    把代码: 改成: 或者:

    2024年02月04日
    浏览(37)
  • unity报错【3】FormatException: Input string was not in a correct format.

    把代码: 改成: 或者:

    2024年02月11日
    浏览(34)
  • Springboot运行报错: “status“: 404, “error“: “Not Found“

    学习SpringBoot jdk版本:jdk-16.0.2 SpringBoot版本:2.7.0 PostMan版本:8.3.1 Idea版本:2021.2 电脑系统:win10 创建一个SpringBoot项目 编写一个Controller类 运行创建的SpringBoot项目,打开PostMan输入如下URL: http://localhost:8080/books/1 结果发现报错 报错信息如下: 解决方案如下: 发现将主方法所

    2024年02月12日
    浏览(43)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包