Linux解压缩文件失败(gzip: stdin: not in gzip format)

2021/5/17 7:27:50

本文主要是介绍Linux解压缩文件失败(gzip: stdin: not in gzip format),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

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

解决方法:
file.tar.xz是你的文件名
首先打包成tar文件
xz -d file.tar.xz
然后
tar -xvf file.tar
进行解压。
然后就可以了
在这里插入图片描述

我遇到这个问题首先是搜了一下,发现是因为压缩包格式为xz,xz是一种压缩文件格式,采用LZMA SDK压缩,目标文件较gzip压缩文件(.gz或·tgz)小30%,较·bz2小15%,是对一串文本压缩。



这篇关于Linux解压缩文件失败(gzip: stdin: not in gzip format)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程