解决tar命令解压报错:gzip: stdin: not in gzip format问题
程序员文章站
2022-05-30 16:39:03
...
解决gzip: stdin: not in gzip format问题
tar -zxvf 报错
gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error is not recoverable: exiting now
分析原因
报错原因是这个压缩包没有用gzip格式压缩,所以不用加z指令就可以了
第一种方法:
直接使用: tar -xvf vendor.tar.gz 即可
第二种方法:
把文件重命名: mv vendor.tar.gz vendor.tar
再执行解压命令:tar -zxvf vendor.tar.gz
推荐阅读
-
tar解压报错:gzip: stdin: not in gzip format Error is not recoverable: exiting now
-
tar解压失败:gzip: stdin: not in gzip format
-
linux解压“gzip: stdin: unexpected end of file tar: Unexpected EOF in archive报错
-
tar解压出错:gzip: stdin: unexpected end of file的解决
-
解决tar命令解压报错:gzip: stdin: not in gzip format问题
-
tar解压报错 gzip: stdin: unexpected end of file tar: Unexpected EOF in archive