0

我从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

当我尝试打开它时。有任何想法吗?

4

2 回答 2

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

于 2013-05-27T14:16:31.323 回答
0

或者只是tar xzf file.tar.gz。更简单,更快,占用更少的磁盘空间。

更新:

我不明白为什么这不起作用,但首先解压缩。在这种情况下,最好:

gzip -dc file.tar.gz | tar xzf -

它至少使用管道来避免从大容量存储中解压缩和读回。

于 2013-05-27T20:05:30.410 回答