0

我正在尝试使用在 ubuntu 上安装 Nginx 服务器

wget http://nginx.org/download/nginx-1.5.3.tar.gz
tar xvfz nginx-1.5.3.tar.gz
cd nginx-1.5.3
./configure
make
install

这就是我得到的:

 tar: Skipping to next header

 gzip: stdin: invalid compressed data--crc error

 gzip: stdin: invalid compressed data--length error 
 tar: Child returned status 1
 tar: Error is not recoverable: exiting now
 ./configure: 10: .: Can't open auto/options
 make:  *** No targets specified and no makefile found.  Stop.
 make: *** No rule to make target `install'.  Stop.

所有这些错误似乎有什么问题?

4

2 回答 2

1

您收到一堆 tar 错误,这可能意味着存档已损坏。在制作之前先尝试解决这些问题。我将从替换tar xvfz nginx-1.5.3.tar.gztar -xvzf nginx-1.5.3.tar.gz

于 2013-08-09T13:54:50.660 回答
0

gzip 已经安装了吗?检查:

whereis gzip

并通过以下方式将其安装在ubuntu上:

sudo apt-get install gzip
于 2013-08-10T14:59:59.227 回答