Centos7.9更换阿里云源

2024-05-29

备份当前的 YUM 源配置文件。


sudo cp -a /etc/yum.repos.d /etc/yum.repos.d.backup

清理原有的 YUM 源配置文件。


sudo rm -f /etc/yum.repos.d/*

创建新的 YUM 源配置文件,例如 alibase.repo。


sudo tee /etc/yum.repos.d/alibase.repo <<EOF

[alibase]

name=Alibaba Cloud base

baseurl=https://mirrors.aliyun.com/centos/\$releasever/os/\$basearch/

enabled=1

gpgcheck=1

gpgkey=https://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-7

EOF

清除缓存并生成新的缓存。


sudo yum clean all

sudo yum makecache

测试更新,可以尝试更新系统。


sudo yum update

以上步骤完成后,您的 CentOS 7.9 系统将使用阿里云的源进行软件包的安装和更新。