CentOS安裝完成後續工作之一:轉:centos7配置國內yum源

原文:centos7配置國內yum源

1. 什麼是yum倉庫?

yum倉庫就是使用yum命令下載軟件的鏡像地址。

我們通常使用 yum install 命令來在線安裝 linux系統的軟件, 這種方式可以自動處理依賴性關係,並且一次安裝所有依賴的軟體包,但是經常會遇到從國外鏡像下載速度慢,無法下載的情況。那麼此時我們就需要把我們的yum 源改爲國內的鏡像。

1.1. yum的配置文件

yum 的配置文件在 /etc/yum.repos.d 目錄下, 其中有多個配置文件,每一個配置文件中都可以配置一個或多個repository, 但是最終會被合併爲一個交給系統,所以多個文件只是爲了方便管理。

2. yum倉庫配置

下面提供了 阿里和 清華大學 兩個鏡像倉庫配置操作說明,=實際使用時,選擇其中一個配置即可。

2.1. 配置 阿里鏡像倉庫

進入阿里鏡像倉庫網站 https://opsx.alibaba.com/mirror
在這裏插入圖片描述
找到centos,點擊右邊的 幫助 ,看到阿里鏡像倉庫給出的yum的配置說明。
在這裏插入圖片描述

2.1.1. 配置步驟

根據官網的說明,我們詳細說說每步驟的意思。

(1)、備份,將 CentOS-Base.repo 爲CentOS-Base.repo.backup

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

(2)、下載新的 http://mirrors.aliyun.com/repo/Centos-7.repo,並命名爲CentOS-Base.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 http://mirrors.aliyun.com/repo/Centos-7.repo

(3)、清除緩存

yum clean all     # 清除系統所有的yum緩存
yum makecache     # 生成yum緩存
yum update

2.1.2. epel源 安裝和配置

(1)、查看可用的epel源

[java@localhost yum.repos.d]$ yum list | grep epel-release
epel-release.noarch                         7-11                       extras   
[java@localhost yum.repos.d]$ 

(2)、安裝 epel

[java@localhost yum.repos.d]$ yum install -y epel-release
......省略.....

(3)、配置阿里鏡像提供的epel源

wget -O /etc/yum.repos.d/epel-7.repo  http://mirrors.aliyun.com/repo/epel-7.repo

(4)、清除緩存

yum clean all     # 清除系統所有的yum緩存
yum makecache     # 生成yum緩存
yum update 

2.1.3. 查看yum源

查看所有的yum源:

yum repolist all

查看可用的yum源:

yum repolist enabled

2.2. 配置 清華大學鏡像倉庫

地址: https://mirrors.cnnic.cn/
在這裏插入圖片描述

點擊 ? 進入幫助說明頁面 https://mirrors.cnnic.cn/help/centos/。

在這裏插入圖片描述

頁面提供了 CentOS5,CentOS6、CentOS7 的鏡像倉庫配置,下面列出的是CentOS7的配置。

(1)、首先備份 CentOS-Base.repo

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak

(2)、之後啓用 TUNA 軟件倉庫, 將清華大學鏡像倉庫信息寫入
/etc/yum.repos.d/CentOS-Base.repo

vim /etc/yum.repos.d/CentOS-Base.repo

將 CentOS-Base.repo 中的內容 更新爲 下面的內容:

# CentOS-Base.repo
#
# The mirror system uses the connecting IP address of the client and the
# update status of each mirror to pick mirrors that are updated to and
# geographically close to the client.  You should use this for CentOS updates
# unless you are manually picking other mirrors.
#
# If the mirrorlist= does not work for you, as a fall back you can try the
# remarked out baseurl= line instead.
#
#

[base]
name=CentOS-$releasever - Base
baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos/$releasever/os/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#released updates
[updates]
name=CentOS-$releasever - Updates
baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos/$releasever/updates/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras
baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos/$releasever/extras/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus
baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos/$releasever/centosplus/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

(3)、清除緩存

yum clean all     # 清除系統所有的yum緩存
yum makecache     # 生成yum緩存
yum update 

————————————————
版權聲明:本文爲CSDN博主「xiaojin21cen」的原創文章,遵循CC 4.0 BY-SA版權協議,轉載請附上原文出處鏈接及本聲明。
原文鏈接:https://blog.csdn.net/xiaojin21cen/article/details/84726193

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章