gzip: stdin: not in gzip format

在使用tar命令的时候报错了 

[root@localhost ~]# tar zxvf thc-ssl-dos-1.4.tar.gz 

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

问题是因为这个下载的文件 根本不是压缩文件,而是 网页

可以看一下

[root@localhost ~]# file thc-ssl-dos-1.4.tar.gz 
thc-ssl-dos-1.4.tar.gz: UTF-8 Unicode HTML document text, with very long lines

更直接的是可以使用cat查看,因为众所周知linux文类型和后缀没有关系 

我们虽然看到的是压缩文件

我们 可以查看一下,实际就是一个文件而不是压缩包

[root@localhost ~]# more  thc-ssl-dos-1.4.tar.gz 







  
    
  
  
  
  
  
  
  



  
  
    
    
    
    
    


  
  
  THC-Archive/thc-ssl-dos-1.4.tar.gz at master ? vanhauser-thc/THC-Archive ? GitHub
    
    
  
  

    

你可能感兴趣的:(Linux)