centos更改阿里云镜像源

2021/10/23 7:13:10

本文主要是介绍centos更改阿里云镜像源,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

参考:https://www.cnblogs.com/jackron/p/13976242.html

           https://www.cnblogs.com/kate7/p/13372624.html 

1、更改yum源

# cat /etc/redhat-release
# cd /etc/yum.repos.d

 

vi CentOS-Linux-AppStream.repo
设置baseurl如下:
baseurl=https://mirrors.aliyun.com/centos/$releasever/AppStream/$basearch/os/
vi CentOS-Linux-Base.repo
设置baseurl如下:
baseurl=https://mirrors.aliyun.com/centos/$releasever/BaseOS/$basearch/os/

 vi CentOS-Linux-Extras.repo

设置baseurl如下: baseurl=https://mirrors.aliyun.com/centos/$releasever/extras/$basearch/os/

2、更改epel源

分别修改目录“/etc/yum.repos.d/”下的如下几个文件

epel.repo
epel-playground.repo
epel-testing.repo
epel-testing-modular.rep
epel-modular.rep

下面以epel.repo为例,其他都是一样的,把metalink注释掉,baseurl换成阿里云的,vi /etc/yum.repos.d/epel.repo

[epel]
name=Extra Packages for Enterprise Linux $releasever - $basearch
baseurl=https://mirrors.aliyun.com/epel/$releasever/Everything/$basearch
#metalink=https://mirrors.fedoraproject.org/metalink?repo=epel-$releasever&arch=$basearch&infra=$infra&content=$contentdir
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-8

[epel-debuginfo]
name=Extra Packages for Enterprise Linux $releasever - $basearch - Debug
baseurl=https://mirrors.aliyun.com/epel/$releasever/Everything/$basearch/debug
#metalink=https://mirrors.fedoraproject.org/metalink?repo=epel-debug-$releasever&arch=$basearch&infra=$infra&content=$contentdir
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-8
gpgcheck=1

[epel-source]
name=Extra Packages for Enterprise Linux $releasever - $basearch - Source
baseurl=https://mirrors.aliyun.com/epel/$releasever/Everything/SRPMS
#metalink=https://mirrors.fedoraproject.org/metalink?repo=epel-source-$releasever&arch=$basearch&infra=$infra&content=$contentdir
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-8
gpgcheck=1

修改把这些网址修改之后,再运行: dnf repolist epel -v

3、经过1和2两步后,执行以下命令:

# dnf -y install epel-release

# dnf clean all

# dnf makecache

# dnf repolist

 



这篇关于centos更改阿里云镜像源的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程