查看主机名称
hostnamectl
sudo hostnamectl set-hostname azure100.amazon.top
sudo hostnamectl set-hostname "azure100 freetie vps" --pretty
sudo hostnamectl set-hostname azure100.amazon.top --static
sudo hostnamectl set-hostname azure100.amazon.top --transient
aws azure机器上面设置了主机名称,重启之后又被还原了
如果你在一个云实例上运行 Ubuntu,并且安装了cloud-init软件包,你也可以编辑/etc/cloud/cloud.cfg文件。这个软件包由云服务器厂商提供,通常默认被安装,并且它可以被用来处理云服务器实例的初始化。
如果文件存在于你的系统上,打开它:
sudo nano /etc/cloud/cloud.cfg
搜索preserve_hostname,并且将值从false修改到true。
# This will cause the set+update hostname module to not operate (if true)
preserve_hostname: true
原创文章,作者:jessegold,如若转载,请注明出处:https://www.hero4u.cn/blog/2024/03/ubuntu-20-04%e7%b3%bb%e7%bb%9f%e6%b0%b8%e4%b9%85%e4%bf%ae%e6%94%b9%e4%b8%bb%e6%9c%ba%e5%90%8d/