本人下載的最小鏡像文件下載地址:http://pan.baidu.com/s/1kUD2jbT
原文地址:http://blog.csdn.net/nmgrd/article/details/51769864
1. 最小化安裝的Centos7系統並沒有nano、vim、wget、curl、ifconfig、lsof命令,這里首先安裝一下:
yum -y install nano vim wget curl net-tools lsof
2. 安裝zip壓縮命令
yum -y install zip
3. 安裝unzip壓縮命令
yum -y install unzip
4. 使用vi編輯resolv.conf文件
vi /etc/resolv.conf #在最后加入:nameserver 8.8.8.8
5.編輯文件/etc/resolv.conf
echo “nameserver 8.8.8.8” >>/etc/resolv.conf
