在Debian 10 Linux中如何更改主机名

时间:2019-11-20 08:53:41  来源:igfitidea点击:

如何修改Debian的主机名?
如何查看Debian的主机名并进行修改?

查看Debian Linux的当前主机名

运行以下命令:

hostnamectl

修改Debian 10的主机名

使用hostnamectl命令修改主机名。

语法如下:

hostnamectl set-hostname {name-here}

例如,将主机名改为deb10.theitroad.local:

sudo hostnamectl set-hostname deb10.theitroad.local

然后编辑/etc/hosts文件:

vi /etc/hosts

添加或者修改主机名和IP的对应关系:

127.0.0.1	localhost
192.168.2.100   deb10.theitroad.local

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