Debian Linux如何修改主机名

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

在Debian中,如何修改主机名?
如何使用hostname命令显示或设置Debian Linux系统的主机名。

如何在Debian服务器上更改主机名

在Debian Linux上更改主机名的步骤:

  • 切换到root:sudo -ssu -
  • 编辑文件/etc/hostname:vi/etc/hostname
  • 编辑文件/etc/hosts:vi/etc/hosts
  • 运行命令:/etc/init.d/hostname.sh start

查看当前的主机名

执行以下命令:

$ hostname

修改Debian主机名

将主机名更改为server2:

$ hostname server2
$ hostname

如何永久更改主机名?

编辑文件/etc/hostname:

# vi /etc/hostname

将主机名修改成:

server2

编辑/etc/hosts文件:

# vi /etc/hosts

将主机名进行相应修改:

127.0.0.1	localhost
127.0.1.1	server2

# 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

主机名通常是在系统启动时,通过/etc/init.d/hostname.sh进行设置。
所以只需执行以下命令,无需重启服务器:

# /etc/init.d/hostname.sh start

或者

# invoke-rc.d hostname.sh start