1

I downloaded Apache httpd-2.4.18.tar.gz file. But I don't know how to install that one?!

Sri Ram
  • 15

1 Answers1

1

It's more complicated to install a package from source. Maybe it would be easier to install it directly by using apt-get install apache2

Otherwise with your downloaded file, you can install it too...

Extract the file

gzip -d httpd-NN.tar.gz
tar xvf httpd-NN.tar

Go on your extracted folder

cd httpd-NN

Configure

./configure --prefix=PREFIX

Compile the package

make

Install it

make install
monitor35
  • 537
  • 1
  • 4
  • 8