CentOS 8如何更改主机名hostname

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

CentOS Enterprise Linux中如何修改主机名?
如何更改CentOS 8 hostname?

解决方案

在CentOS 8中,可以使用hostnamectl命令修改主机名。
也可以使用hostname命令查看或设置系统主机名。
配置文件是/etc/hostname, 在系统启动时读取。

CentOS 8显示当前的主机名

执行下面的命令:

$ hostname

或者

$ hostnamectl

CentOS 8更改主机名

在CentOS Linux上更改hostname的步骤:

  • 编辑/etc/hostname文件:sudo vi/etc/hostname
  • 编辑/etc/hosts文件:sudo vi/etc/hosts
  • 重新启动系统以使更改生效:sudo reboot

如何在不重新启动系统的情况下更改CentOS 8的主机名

执行下面的命令

$ sudo hostname theitroad-centos8

编辑/etc/hostname文件并更新主机名:

$ sudo vi /etc/hostname

编辑/etc/hosts文件并更新主机名:

$ sudo vi /etc/hosts

hostnamectl命令

在CentOS 8中,可以简单地使用hostnamectl命令修改hostname。

查看当前主机名:

$ hostnamectl

要将主机名从localhost.localdomain更改为theitroad-centos8,执行:

$ sudo hostnamectl set-hostname theitroad-centos8
$ hostnamectl

不需要重启。