在Ubuntu中如何不重启设置主机名
时间:2019-08-20 17:58:30 来源:igfitidea点击:
如何在linux下通过命令找到主机名
获取系统的主机名
hostname
如何在linux下通过命令找到FQDN
在linux中使用下面的命令来查找FQDN
hostname -f
如何在不重启的情况下设置Ubuntu的主机名和FQDN
使用
ifconfig
命令获取系统的ip地址编辑/etc/hosts文件。格式如下
root@myubuntu:~# vi /etc/hosts 192.168.168.15 myubuntu.example.com myubuntu
- 编辑/etc/hostname文件并设置hostname
root@myubuntu:~# vi /etc/hostname myubuntu
- 重启主机名服务。
/etc/init.d/hostname restart 或者 /etc/init.d/hostname.sh restart
- 检查主机名和FQDN
hostname hostname -f