1.檢查網絡卡是否啟用(可用ip addr檢視ip)
2.安裝基本命令
yum search ifconfig //檢視ifconfig命令所在的包
yum install -y wget
yum install -y net-tools
yum install -y unzip zip //壓縮和解壓
3.更換yum源
#163源
mv /etc/yum.repos.d/centos-base.repo /etc/yum.repos.d/centos-base.repo.backup
wget -o /etc/yum.repos.d/centos-base.repo
#or 阿里源
cp /etc/yum.repos.d/centos-base.repo /etc/yum.repos.d/centos-base.repo.bak
wget -o /etc/yum.repos.d/centos-base.repo
cp /etc/yum.repos.d/epel.repo /etc/yum.repos.d/epel.repo.bak
wget -o /etc/yum.repos.d/epel.repo
#禁用 yum外掛程式 fastestmirror
vi /etc/yum/pluginconf.d/fastestmirror.conf
enabled = 1 #由1改為0,禁用該外掛程式
vi /etc/yum.conf
plugins=1 #由1改為0,不使用外掛程式
#清除快取
yum clean all
#重建源資料快取
yum makecache
#ok,換源完成
4.更換防火牆
#注意有時會發生即使禁用了也只有22埠能訪問。這時需要啟動firewalld服務新增相應埠。
#systemctl stop firewalld
systemctl disable firewalld.service
yum install -y iptables-services
5.配置ipables
6.關閉selinux
vi /etc/selinux/config
#注釋掉下面兩行
#selinux=enforcing
#selinuxtype=targeted
#增加一行
selinux=disabled
然後使用下面的命令啟用,在這裡最好重啟一下系統,也可以稍後重啟
setenforce 0
Centos 7最小化安裝後配置
關閉selinux vi etc sysconfig selinux selinux disabled wq配置網絡卡 最小化安裝後ifconfig無法使用 該配置的前提是採用 nat模式 檢查網絡卡 ip addr 或者 更新yum yum y update聯網後安裝ifconfig yum y ...
Centos 7 最小化安裝後基本配置
1 安裝ifconfig yum install y net tools yum y install vim yum y install git yum y install lrzsz yum install y wget firewall是centos7裡面的新的防火牆命令,它底層還是使用 ipt...
CentOS7 最小化安裝後的必備操作
在vm虛擬機器中安裝centos 7 時 有時候顧慮到電腦硬體效能,我們需要最小化安裝,而最小化安裝後與centos6的版本是有一些差異的,接下來我們就對剛安裝好的最小化centos7做一些操作,來世我們使用的更得心應手。最小化安裝centos7,首先需要配置網路,和6系列一樣 vi etc sys...