tar解压失败:gzip: stdin: not in gzip format
程序员文章站
2022-05-30 16:40:15
...
tar -zxvf xxx.tar.gz -C /home/xxx/
tar: 选项需要参数 -- "C"
请用“tar --help”或“tar --usage”获得更多信息。
解决方法:
去掉z参数,使用 tar -xvf 解压正常
# tar -xvf xxx.tar.gz /home/xxx/
原因分析:
1、压缩文件被人为的改过名称,比如:最初压缩的并非.gz,被人为的修改了后缀,这时可以去掉后缀再解压,如:文件FMIS2600DMP.tar.gz,去掉gz后缀,再用tar -xvf 解压
[[email protected] FMIS2600bak]# tar -xvf /home/oradata/FMIS2600DMP.tar
2、FTP传输的问题,可能在传输时使用的是ascii传输,这种情况,改为二进制传输就ok了。
上一篇: mysql创建删除修改更新数据库操作总结
下一篇: CSS3教程-动画
推荐阅读
-
gzip: stdin: unexpected end of file tar: Unexpected EOF in archive tar: Unexpect
-
Linux解压tar.gz文件时提示gzip:stdin:not错误
-
Linux 压缩 解压命令 tar, gzip, zcat,bzip2, bzcat,compres
-
Linux 压缩 解压命令 tar, gzip, zcat,bzip2, bzcat,compres
-
解压出错:gzip: stdin: unexpected end of file的解决
-
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问题