首页 > 系统相关 >yum配置阿里源

yum配置阿里源

时间:2023-01-18 17:22:54浏览次数:34  
标签:配置文件 repos 配置 repo 阿里 yum wget

准备阶段
检查wget是否下载

yum install -y wget

阿里源配置
1.进入yum源的配置文件下

cd /etc/yum.repos.d/ # 进入到yum源的配置文件中
rm -rf * # 清空所有的yum源文件

# 下载阿里云的官方镜像源
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo

2.yum源的必敲命令:

#以下两条命令在换yum源之后必做,不然可能会出问题!
yum clean all # 清理yum缓存
yum makecache # 缓存软件包信息(提高搜索/安装软件的速度)

标签:配置文件,repos,配置,repo,阿里,yum,wget
From: https://www.cnblogs.com/amber10086/p/17060261.html

相关文章