Ubuntu修改主机名HostName
1. 查看主机名
uname -n
#或
hostname
2. 临时修改HostName
hostname new_name
需要在新的终端中才能生效
3. 永久生效
修改/etc/hostname文件即可,其它发行版本通常位于/etc/sysconfig/network。
vim /etc/hostname
server01
同时我们可以设置主机名称和本地ip的映射通过修改/etc/hosts文件即可。
127.0.0.1 localhost 127.0.1.1 server01