linux tar 解压缩zip文件报错的解决

解压缩时报错

  1. gzip: stdin has more than one entry--rest ignored  
  2. tar: Child returned status 2  
  3. tar: Error is not recoverable: exiting now 

看这博主(http://blog.csdn.net/zhngjan/article/details/25197505)说需要unzip 可以解压,执行unzip 没有该命令,

试用gunzip解压缩也失败了,于是还是先去下载个unzip程序

于是先yum install unzip 下载unzip

然后解压缩:

# unzip linux_setup_1.4.1.zip -d tmp 

解压缩到当前文件夹下的tmp文件夹下。

你可能感兴趣的:(读书笔记,压缩,gzip)