临时更改主机名:
hostname ABC #临时改名;
vim /etc/hostname #进入etc下的hostname,直接编写名字,永久改名;
手动配置IP地址:
1.查看命令识别的网卡名
[root@s ~]# nmcli connection show
名称
System eth0
2.配置IP地址、子网掩码、网关地址 (下面是一整条命令)
# nmcli connection modify ‘System eth0‘ ipv4.method manual #手动配置参数 ipv4.addresses ‘172.25.0.11/24 172.25.0.254‘
connection.autoconnect yes #每次开机自动启用
3.激活网络配置
[root@s ~]# nmcli connection up ‘System eth0‘
[root@s ~]# ifconfig
[root@s ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0 #设备名
BOOTPROTO=none #手动配置
ONBOOT=yes #每次开机自动启用
IPADDR0=172.25.0.11 #IP地址
PREFIX0=24 #子网掩码
GATEWAY0=172.25.0.254 #网关
4.配置永久的DNS服务器,/etc/resolv.conf
[root@s ~]# vim /etc/res(tab)
nameserver 8.8.8.8
或者输入命令
# nmcli connection modify ‘System eth0‘ ipv4.method manual ipv4.dns ‘8.8.8.8‘
# nmcli connection up ‘System eth0‘ 激活配置
原文地址:http://13395140.blog.51cto.com/13385140/1977582