This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed last year.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
它不是一个 tar 文件。下载失败,您得到的“.tar”文件实际上是一个 html 失败文件,并显示:
“
403 Forbidden
禁止
您无权访问 /public/snake_toxins/SNAKE_ALL.tar
在此服务器上。
Apache/2.2.15 (Linux/SUSE) mod_ssl/2.2.15 OpenSSL/1.0.0 PHP/5.3.3 Server at www.cbs.dtu.dk Port 80
"
下次你得到类似的东西时,运行 commman:
file SNAKE_ALL.tar 看看它到底是什么类型的文件。
It's not a tar file. The download fails and the ".tar" file you get is really a html fail saying:
"
403 Forbidden
Forbidden
You don't have permission to access /public/snake_toxins/SNAKE_ALL.tar
on this server.
Apache/2.2.15 (Linux/SUSE) mod_ssl/2.2.15 OpenSSL/1.0.0 PHP/5.3.3 Server at www.cbs.dtu.dk Port 80
"
Next time you get something like this run the commman:
file SNAKE_ALL.tar to see what kind of file it really is.
它似乎已损坏。请注意,文件大小为 0 字节。
文件截图
It appears to be corrupted. Note that the file size is 0 bytes.
file screenshot
您必须使用
curl -JLO
来下载该文件。使用curl -O
有时它只是下载一个HTML文件。You have to use
curl -JLO
to download the file. Withcurl -O
it just downloads an HTML file sometimes.