1.?關(guān)閉SELINUX拂铡,防止權(quán)限問題
vi /etc/sysconfig/selinux
SELINUX=disabled
2.配置網(wǎng)卡(最小化安裝后ifconfig無法使用)
/etc/sysconfig/network-scripts文件目錄下的網(wǎng)卡配置文件? ?ifcfg-..
ONBOOT=yes
配置完成后 重啟 網(wǎng)卡? service network restart? ?可以成功連接到網(wǎng)絡(luò)? ping www.baidu.com
3.?更新yum
yum -y update
更新完成后安裝ifconfig
yum -y install net-tools
4.綁定靜態(tài)IP
編輯 /etc/sysconfig/network-scripts 下的 ifcfg
IPADDR=192.168.1.180
GATEWAY=192.168.1.1
DNS1=114.114.114.114
DNS2=8.8.8.8
service network restart