como alterar o FQDN no Ubuntu

3

Tentei alterar o FQDN no Ubuntu usando sudo -i gedit /etc/hosts e alterar conforme mostrado abaixo:

127.0.0.1   localhost
127.0.1.1   ubuntu.example.com
192.168.217.129 ubuntu.example.com

# 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 disso eu tentei:

hostname -f 

que mostra:

hostname: Name or service not known

Como posso alterar o FQDN?

    
por THARAKA SANDARUWAN 18.12.2015 / 07:30

1 resposta

3

Edite /etc/hostname e coloque ubuntu

echo "ubuntu" > /etc/hostname

Coloque também hostname entry no seguinte formato em /etc/hosts

IP  fqdn   hostname

Seu /etc/hosts deve ser parecido com

  127.0.0.1   localhost
  127.0.1.1   ubuntu.example.com  ubuntu
  192.168.217.129 ubuntu.example.com  ubuntu 
# The following lines are desirable for IPv6 capable hosts
    
por 18.12.2015 / 09:53