Não é possível instalar o apache no Ubuntu 13.04 [duplicado]

0

Eu tenho arquivos do apache baixados, e eu não consegui instalar o, ele continua listando dependências e quando eu checo minha lista de pacotes instalados, ele lista o apache2 como deinstall, eu também não pude rodar o mysql também . O que devo fazer, porque o sistema não está conectado à internet.

    
por pamodulus 05.05.2013 / 11:01

1 resposta

0

Download :

$ lynx http://httpd.apache.org/download.cgi

Extrair :

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

Configurar :

$ ./configure --prefix=PREFIX

Compile :

$ make

Instalar :

$ make install

Personalizar :

$ vi PREFIX/conf/httpd.conf

Teste :

$ PREFIX/bin/apachectl -k start
    
por Radu Rădeanu 05.05.2013 / 11:10