我们知道,Debian内主机名记录在/etc/hosts和/etc/hostname两个文件中,如要做修改,将两个文件中的主机名都要更改,并重启即可。
hosts文件每行分3个域:
IP 主机名 别名
对于别名就是主机名的说法是不对的,别名只是为了方便使用,对它的修改是不会影响到之际名的。
真正影响主机名的是hostname(在Debian系统是这样的)。这里特别提醒大家注意的是,如果在hostname中修改了主机名,一定要在hosts里加入这样的行:
127.0.0.1 localhost 你修改的主机名
或者这样
127.0.0.1 你修改的主机名
因为在linux里很多命令都会用到gethostbyname()这个函数,如果你改了主机名而又没有在hosts里更新,那么这个命令是无法执行的。
例:
root@debian:~# vi /etc/hostname
h11
root@debian:~# vi /etc/hosts
127.0.0.1 localhost
127.0.1.1 h11
# The following lines are desirable for IPv6 capable hosts
::1 localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
root@debian:~# reboot