CentOS7最小化安裝後的操作
阿新 • • 發佈:2019-01-22
install centos7 -o lld 完成 命令 進入 ifconf 緩存
1.更換yum源
#先進入源的目錄
cd /etc/yum.repo.d
#備份一下官方源
mv CentOS-Base.repo CentOS-Base.repo.bak
#將阿裏源文件下載下來
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
#重建源數據緩存
yum makecache
#ok,換源完成
2.啟用ifconfig命令(可用ip addr查看ip)
yum install -y net-tools
3.更換防火墻
systemctl stop firewalld、 systemctl disable firewalld.service yum install -y iptables-services
4.配置ipables
5.關閉SELINUX
vi /etc/selinux/config
#註釋掉下面兩行
#SELINUX=enforcing
#SELINUXTYPE=targeted
#增加一行
SELINUX=disabled
然後使設置啟用,在這裏最好重啟一下系統,也可以稍後重啟
setenforce 0
CentOS7最小化安裝後的操作