CentOS 7- 配置阿里镜像源


阿里镜像官方地址http://mirrors.aliyun.com/


1、点击官方提供的相应系统的帮助 :
CentOS 7- 配置阿里镜像源
2、查看不同版本的系统操作:
CentOS 7- 配置阿里镜像源


下载源
1、安装wget
yum install -y wget
2、下载CentOS 7的repo文件
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo


或者


curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
3、更新镜像源
清除缓存:yum clean all
生成缓存:yum makecache


点我领取阿里云2000元代金券,(阿里云优惠券的作用:购买阿里云产品,最后支付结算的时候,阿里云优惠券可抵扣一部分费用。

更改配置文件(很重要)
1、备份CentOS 7系统自带yum源配置文件/etc/yum.repos.d/CentOS-Base.repo命令:


mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup


2、找到yum源的配置路径
cd /etc/yum.repos.d


3、(可以省略该步骤)查看该目录下的所有文件目录:
ls
CentOS 7- 配置阿里镜像源
4、打开CentOS-Base.repo文件:
vim CentOS-Base.repo


点我领取阿里云2000元代金券,(阿里云优惠券的作用:购买阿里云产品,最后支付结算的时候,阿里云优惠券可抵扣一部分费用。

或者


vi CentOS-Base.repo


5、将文件中的所有http开头的地址更改为https(下图中只是列出部分内容,并不完善):
CentOS 7- 配置阿里镜像源
6、更新yum:
yum update

阿里云服务器:活动地址

购买可领取:阿里云代金券

上一篇:【算法】1476. 子矩形查询(java / c / c++ / python / go / rust)


下一篇:【算法】1720. 解码异或后的数组(java / c / c++ / python / go / rust)