Não é possível instalar o ruby no Ubuntu 12.04

1

Oi eu quero instalar o ruby no meu Ubuntu 12.04. Eu tentei com o seguinte comando sudo apt-get install curl , mas isso me causa o seguinte erro.

The hostname -f command returned: $1

Your system needs to have a fully qualified domain name (fqdn) in
order to install the var-qmail packages.

Installation aborted.

dpkg: error processing qmail (--configure):
 subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of qmail-run:
 qmail-run depends on qmail (>= 1.06-2.1); however:
  Package qmail is not configured yet.
dpkg: error processing qmail-run (--configure):
 dependency problems - leaving unconfigured
No apport report written because the error message indicates its a followup error from a previous failure.
                                                                                                      Errors were encountered while processing:
 qmail
 qmail-run
E: Sub-process /usr/bin/dpkg returned an error code (1)

Como resolver esse erro. Preciso de ajuda. Eu estou usando o Ubuntu 12.04

    
por nilkash 24.08.2013 / 09:03

1 resposta

1

O problema é que você não tem um FQDN no seu arquivo /etc/hosts .

Aqui está um exemplo do que /etc/hosts deve conter:

root@precise64:/home/vagrant# cat /etc/hosts
127.0.1.1       precise64.example.com precise64

# The following lines are desirable for IPv6 capable hosts
::1     ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

Depois de corrigir o arquivo /etc/hosts , você poderá verificar seu FQDN com hostname -f

root@precise64:/home/vagrant# hostname -f
precise64.example.com

Você deve conseguir sudo apt-get install qmail após as alterações.

    
por 24.08.2013 / 10:15