web-dev-qa-db-ja.com

UbuntuでFQDNを変更する方法

Sudo -i gedit /etc/hostsを使用してUbuntuのFQDNを変更し、次のように変更しようとしました。

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

その後、私は試しました:

hostname -f 

これは次のことを示しています。

hostname: Name or service not known

FQDNを変更するにはどうすればよいですか?

3

/etc/hostnameを編集し、ubuntuを入力します

echo "ubuntu" > /etc/hostname

hostnameエントリも次の形式で/etc/hostsに入力します

IP  fqdn   hostname

/etc/hostsは次のようになります

  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
3
Neel