提示:以下操作在CentOS中使用root账号进行操作
一、首先进入/etc/yum.repos.d/目录下,备份复制CentOS-Base.repo文件,用于保存系统中原来的repo文件
1、cd /etc/yum.repos.d
2、cp CentOS-Base.repo ./CentOS-Base.repo.bak
二、下载使用阿里镜像仓库或者其它源
1.下载国内源
代码如下(示例):
1、wget http:
2、wget http:
3、ll
2.清除系统yum缓存并生成新的yum缓存
代码如下(示例):
1、yum clean all
2、yum makecache
3.安装epel源
1、yum list | grep epel-releasel
2、yum install -y epel-release
3、wget -O /etc/yum.repos.d/epel-7.repo http:
4、yum clean all
5、yum makecache
6、yum -y update
总结
本文主要参考网上大佬们的博客,实操过,但过程是否科学需要进一步理顺,有错误的地方,望大佬们指出 参考链接:https://www.cnblogs.com/renpingsheng/p/7845096.html
|