Instalando Apache no Ubuntu
Resumo
Logar como administrador:
x
$ sudo su
Atualizar o Ubuntu:
x
$ apt-get update
Instalar o Apache v2:
x
$ apt-get install apache2
Reinicie o Apache:
x
$ /etc/init.d/apache2 restart
Permissão de escrita no diretório padrão do Apache:
x
$ chmod 777 /var/www
Teste usando
http://localhost
ou http://127.0.0.1/
ou http://localhost:80
ou http://127.0.0.1:80
O que é Apache