一、備份
- 切換至源目錄,備份源:
cd /etc/yum.repos.d/ #進入源目錄
ls #檢視原始檔
mkdir bkup #建立備份目錄
mv CentOS-Linux-* bkup #將原始檔移動至備份資料夾
若是更換源並且原生源已經備份的情況下,使用rm -f *.repo
刪除原先檔案。
二、下載安裝映象源
- 使用wget命令下載映象源,本次使用的源為阿里雲映象:
#下載並替換源
wget https://mirrors.aliyun.com/repo/Centos-vault-8.5.2111.repo -O /etc/yum.repos.d/Centos-vault-8.5.2111.repo
wget https://mirrors.aliyun.com/repo/epel-archive-8.repo -O /etc/yum.repos.d/epel-archive-8.repo
使用命令設定源:
sed -i 's/mirrors.cloud.aliyuncs.com/url_tmp/g' /etc/yum.repos.d/Centos-vault-8.5.2111.repo && sed -i 's/mirrors.aliyun.com/mirrors.cloud.aliyuncs.com/g' /etc/yum.repos.d/Centos-vault-8.5.2111.repo && sed -i 's/url_tmp/mirrors.aliyun.com/g' /etc/yum.repos.d/Centos-vault-8.5.2111.repo
sed -i 's/mirrors.aliyun.com/mirrors.cloud.aliyuncs.com/g' /etc/yum.repos.d/epel-archive-8.repo
其中http://mirrors.cloud.aliyuncs.com需要替換為http://mirrors.aliyun.com,但是官方提供的命令沒替換完,並且官方命令針對的是具有公網訪問能力的ECS例項,若官方替換命令還是會報錯的話,使用以下命令:
sed -i 's/mirrors.cloud.aliyuncs.com/mirrors.aliyun.com/g' /etc/yum.repos.d/Centos-vault-8.5.2111.repo
sed -i 's/mirrors.cloud.aliyuncs.com/mirrors.aliyun.com/g' /etc/yum.repos.d/epel-archive-8.repo
三、建立yum快取並測試
- 建立yum快取
yum clean all && yum makecache #清除原yum快取建立新快取
- 測試yum命令
yum update -y #使用yum更新測試源可用性
或者隨便裝個包試一試。