如何永久更改Ubuntu的主机名
时间:2019-04-29 03:18:22 来源:igfitidea点击:
服务器安装后默认主机名是localhost,如何将其更改为ubuntu-yunkaibiji?
主机名通常位于/etc/hosts文件中。
在Ubuntu中, 我们可以使用hostnamectl命令来查看或设置主机名。
如何显示当前的主机名 (Ubuntu)
运行以下命令:
hostnamectl
或者查看文件 cat /etc/hostname
在Ubuntu 20.04 LTS上永久更改主机名
- 键入hostnamectl命令,设置新主机名 sudo hostnamectl set-hostname newNameHere
- 修改/etc/hosts文件中的主机名 vi /etc/hosts
- 重启系统使更改生效(非必须):sudo reboot