常用命令
查看当前主机名
hostname
# 或者
uname -a
Ubuntu 16.04 修改主机名
第一步
修改/etc/hostname
文件
vi /etc/hostname
修改成你需要的主机名后保存退出;
第二步
修改/etc/hosts
配置文件
vi /etc/hosts
# 在第二行添加
127.0.1.1 sunpma(sunpma为你刚才设置的主机名)
第三步
重启系统使其生效
sudo reboot
Ubuntu 18.04 修改主机名
第一步
修改/etc/cloud/cloud.cfg
文件
vi /etc/cloud/cloud.cfg
找到preserve_hostname: false
将其修改为preserve_hostname: true
第二步
修改/etc/hostname
文件
vi /etc/hostname
修改成你需要的主机名后保存退出;
第三步
修改/etc/hosts
配置文件
# 在第二行添加
127.0.1.1 sunpma(sunpma为你刚才设置的主机名)
第四步
重启系统使其生效
sudo reboot
版权声明:本文为原创文章,版权归 suntl.com 所有,转载请注明出处!
本文链接:https://suntl.com/785.html
友情提示:如果博客出现404或链接失效,请留言或者联系博主修复!