1.背景介绍
平时在服务器上通过yum install软件时,下载速度极其缓慢,难以接受,然而网上找了一堆资料,也没看到腾讯云有相应的yum源,于是就尝试直接使用阿里云源试试是否可以提升下载速度,实测效果满意,以gitlab下载效果对比为例
2.安装wget
[root@VM-4-16-centos ~]# yum install -y wget
3.将原来的yum重命名进行备份
[root@VM-4-16-centos ~]# cd /etc/yum.repos.d/
# cd之后路径是在yum.repos.d下才是对的
[root@VM-4-16-centos ~]# mv CentOS-Base.repo CentOS-Base.repo.back
4.下载阿里云Centos-7.repo文件
[root@VM-4-16-centos ~]# cd
[root@VM-4-16-centos ~]# wget -O CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
5.重新加载yum
[root@VM-4-16-centos ~]# yum clean all
[root@VM-4-16-centos ~]# yum makecache
然后就可以愉快的安装了