ubuntu18.04修改主机名hostname

ubuntu 18.04不能直接修改/etc/hostname中主机名称,重启后又恢复到安装时设置的主机名称.正确的修改步骤如下:

1.首先修改/etc/cloud/cloud.cfg

sudo vim /etc/cloud/cloud.cfg
#找到preserve_hostname: false修改为preserve_hostname: ture

2.修改主机名(永久)

#修改主机名(临时)
#hostname master

#修改主机名(永久)
sudo vim /etc/hostname
#然后改为需要的主机名后存盘退出

#映射主机名
sudo vim /etc/hosts
#192.168.1.xxx 主机名

sudo reboot

重启后新的主机名就生效了,但是要注意不能将还原preserve_hostname: false,否则下次重新后主机名又被覆盖了.

#查看主机名
uname -a
#主机名实际存储在/proc/sys/kernel/hostname,但是不能修改
cat /proc/sys/kernel/hostname

 

版权声明:
作者:xiaoniba
链接:https://blog.xiaoniba.com/2019/01/17/ubuntu18-04%e4%bf%ae%e6%94%b9%e4%b8%bb%e6%9c%ba%e5%90%8dhostname/
来源:小泥吧的博客
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>