修改主机名:
1)临时修改主机名: xieqc.cn
#hostname xieqc.cn //只针对本次登陆有效
2)永久生效
#hostnamectl set-hostname xieqc.cn
3)图像化更改主机名
#nmtui
4)修改配置文件
#vim /etc/hostname
//重启后生效(永久生效)
修改网络配置:
1)修改网卡配置文件
#vim /etc/sysconfig/network-scripts/ifcfg-eno16777736
TYPE=Ethernet
BOOTPROTO=static
ONBOOT=yes
IPADDR=192.168.223.111
NETMASK=255.255.255.0 PREFIX=24
GATEWAY=192.168.223.1
DNS1=8.8.8.8
DNS2=114.114.114.114
2)重启网卡服务
#systemctl restart network
3)关闭防火墙:
#systemctl stop firewalld
进程:
#systemctl start/restart/stop/enable 进程名
用命令修改IP地址:
# nmcli connection modify eno16777736 ipv4.method manual
修改 网卡名字 修改方式 手动
ipv4.addresses 192.168.203.222/24 ipv4.gateway 192.168.203.1
IP地址 网关
ipv4.dns 8.8.8.8
DNS
connection.autoconnect yes
自动连接
#nmcli connection down eno16777736
#nmcli connection up eno16777736
//重启网卡
查看网卡信息:
1)ifconfig
2)ip a s