前言
此方法親測有效,適用於CentOS7版本所有的環境。 CentOS7本地yum源的配置,請參考本人的另一篇博客文章:https://blog.csdn.net/KingveyLee/article/details/114979418 RedHat7本地yum源的配置,請參考本人的另一篇博客文章:https://blog.csdn.net/KingveyLee/article/details/114981036
一、環境准備
你需要准備一台乾淨的CentOS7的環境,且可以ping的通外網~尤其是mirrors.aliyun.com。 簡單測試一下,如果通的話,再執行以下步驟完成設置。
ping mirrors.aliyun.com
二、手動配置阿裏雲源
備份官方的原yum源的配置
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
下載Centos-7.repo文件 最小化安裝,如果沒有wget的命令,可使用curl代替wget,執行如下語句代替: curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
清除及生成緩存。# 清除yum緩存
yum clean all
# 緩存阿裏雲源
yum makecache
# 測試阿裏雲源
yum list
三、腳本配置本地源
找個目錄,創建腳本文件: 本人以/root/目錄為例
vi /root/auto_aliyun.sh
編寫如下內容:#!/bin/bash
# 備份官方的原yum源的配置
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
# 下載Centos-7.repo文件,或者curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo,取決於你是否有wget的命令
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
# 清除yum緩存
yum clean all
# 緩存本地yum源
yum makecache
按ESC。輸入:wq保存,完成鏡像阿裏雲源的腳本文件的編寫賦予腳本可執行的權限chmod +x /root/auto_aliyun.sh
執行腳本文件,即可/root/auto_aliyun.sh