我从中下载了几个版本 http://swiftmailer.org/downloads/archive (tar.gz)但是档案管理员说
tar: This does not look like a tar archive
tar: Skipping to next header
tar: Exiting with failure status due to previous errors
当我尝试打开它时。有什么想法吗?
答案 0 :(得分:1)
尝试:
gzip -d file.tar.gz
然后:
tar -xf file.tar
这取自:
http://fosshelp.blogspot.com.au/2012/04/solution-tar-this-does-not-look-like.html
答案 1 :(得分:0)
或只是tar xzf file.tar.gz
。更轻松,更快速,占用磁盘空间更少。
更新
我不明白为什么这样做不起作用,但首先要解压缩。在这种情况下,最好是:
gzip -dc file.tar.gz | tar xzf -
至少使用管道来避免解压缩并从大容量存储器读回。