一. 配置yum源
1.备份系统自带源文件
cd /etc/yum.repos.d/
mkdir bak
mv *.repo bak
2. 配置阿里云yum源
若有wget
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
若没有wget,先直接把 http://mirrors.aliyun.com/repo 输入到浏览器下载,其次把下载出来的文件直接放在刚才 bak 文件的同级目录下即可,也就是/etc/yum.repos.d
3. 清理缓存并生成新的缓存
# 清除缓存
yum clean all
# 生成新的缓存
yum makecache
4. 列出当前可用仓库
yum repolist all
二. 安装常用软件
1. 网络工具
可以使用 ifconfig 或 crul 等
yum install -y net-tools
2. vim工具
yum install -y vim
3.安装gcc gcc-c++
yum install -y gcc gcc-c++
4. 安装 lsof
yum install -y lsof
5. 安装 unzip
yum install -y unzip
6. 安装 telnet
yum install -y telnet
7. 安装 wget
yum install -y wget