码迷,mamicode.com
首页 > 其他好文 > 详细

tar解压包的时候出现错误 gzip: stdin: not in gzip format

时间:2017-08-25 14:04:06      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:ret   ges   ble   span   通过   std   解压   orm   roo   

在Linux环境下,通过tar -zxvf 命令解压文件时遇到”gzip: stdin: not in gzip format“等错误:如图所示

1 root@cmfchina:/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: exiting now

技术分享

最终发现这个压缩包没有用gzip格式压缩,所以不用加z参数,囧(所以不是所有的解压包都得用 -zxvf)!

tar -zxvf jdk-8u144-linux-x64.tar.gz 改成 tar -xvf jdk-8u144-linux-x64.tar.gz

tar解压包的时候出现错误 gzip: stdin: not in gzip format

标签:ret   ges   ble   span   通过   std   解压   orm   roo   

原文地址:http://www.cnblogs.com/xuliangxing/p/7427375.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!