无法解压 .tar.gz 文件

无法解压 .tar.gz 文件

因此,我正在尝试安装 apache tomcat,当我尝试解压 tar 文件时出现此错误。

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

我正在尝试使用以下命令解压缩它: tar xf apache-tomcat-9.0.10.tar.gz

我使用以下 curl 命令下载了该文件:

curl -O http://mirror.cc.columbia.edu/pub/software/apache/tomcat/tomcat-9/v9.0.10/bin/apache-tomcat-9.0.10.tar.gz```

答案1

发现你的 gz 文件可能只是一个 html 页面:

>cat apache-tomcat-9.0.10.tar.gz
><!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
><html><head>
><title>404 Not Found</title>
></head><body>
><h1>Not Found</h1>
><p>The requested URL /pub/software/apache/tomcat/tomcat-9/v9.0.10/bin/apache->tomcat-9.0.10.tar.gz was not found on this server.</p>
><hr>
><address>Apache/2.2.22 (Fedora) Server at mirror.cc.columbia.edu Port 80</address>
></body></html>

答案2

问题是 URL 不正确。请尝试:

curl -O http://mirror.cc.columbia.edu/pub/software/apache/tomcat/tomcat-9/v9.0.22/bin/apache-tomcat-9.0.22.tar.gz

或其他版本 9.0.10 的镜像

相关内容