centos7更换yum源

yum安装一些软件的时候,发现yum源中没有,这时候我们可以更换yum源,这样就可以使用yum来下载了。

1.安装wget

yum install wget -y

2.备份旧的yum源

//进入yum源所在目录
cd  /etc/yum.repos.d
//创建一个文件夹repobak
mkdir  repobak
//将repo结尾的文件移动到repobak目录下
mv *.repo   repobak

3.清理旧包

yum clean all

4.下载阿里的yum源仓库

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

5.下载epel仓库

wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo

6.生成yum源缓存

yum makecache

7.更新yum源

yum update

这样就更换好了yum源,可以愉快的通过yum安装软件了。

安装一个redis试试

yum install redis -y

启动redis(通过yum安装的软件可以使用systemctl start来启动)

systemctl  start redis

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: