I am trying to install Nginx server on ubuntu using
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
this is what I get:
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.
What seems to be the problem with all these errors?