1、进入目录:
cd /etc/yum.repos.d
2、备份文件:
mv CentOS-Base.repo CentOS-Base.repo.backup
3、Centos 6.8 更新 网易源
# Centos 更新 网易源
curl -O http://mirrors.163.com/.help/CentOS6-Base-163.repo
mv CentOS6-Base-163.repo CentOS-Base.repo
# Centos 7 更新 阿里源
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 http://mirrors.aliyun.com/repo/Centos-7.repo
4、清除缓存:
yum clean all
5、生成缓存:
yum makecache
6、常用操作:
yum install #安装指定软件
yum remove #卸载指定软件
yum search #搜索指定软件
yum list #显示所有软件
yum list installed #查看已装软件
标签:Centos,CentOS,repos,更新,repo,Base,yum From: https://blog.51cto.com/u_14508118/5857805