天天看點

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

3、更新鏡像源

清除緩存:yum clean all

生成緩存:yum makecache

更改配置檔案(很重要)

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

vi CentOS-Base.repo

5、将檔案中的所有http開頭的位址更改為https(下圖中隻是列出部分内容,并不完善):

CentOS 7- 配置阿裡鏡像源

6、更新yum:

yum update

繼續閱讀