redhat 9.3 配置yum阿里源

由于新建的Redhat9.3在未注册激活之前是没有yum源的配置文件的,所以需要我们自己新建一个yum源文件的配置文件
在这里插入图片描述

  1. 进入repo路径编写配置文件
vim /etc/yum.repos.d/aliyun_yum.repo 

[ali_baseos]
name=ali_baseos
baseurl=https://mirrors.aliyun.com/centos-stream/9-stream/BaseOS/x86_64/os/
gpgcheck=0

[ali_appstream]
name=ali_appstream
baseurl=https://mirrors.aliyun.com/centos-stream/9-stream/AppStream/x86_64/os/
gpgcheck=0

  1. 创建软件缓存信息
yum makecache

  1. 更新软件
yum -y update

至此,阿里源配置成功,可以yum下载东西验证。

你可能感兴趣的:(运维)