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を変更するにはどうすればよいですか?
/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