为centos8配置yum源属于一个简单的过程,如果是个人用户配置centos8的yum源可以保证软件包更新和安装更快更稳定。下面是华纳云整理的关于centos8 yum源的配置步骤。
先备份原有的yum源配置文件:
sudo cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
编辑yum源配置文件,使用文本编辑器编辑CentOS-Base.repo文件。你可以使用vi、nano或其他你喜欢的编辑器。以下是使用vi的示例:
sudo vi /etc/yum.repos.d/CentOS-Base.repo
打开 /etc/yum.repos.d/CentOS-Base.repo 文件:
sudo vi /etc/yum.repos.d/CentOS-Base.repo
修改文件中的源地址,修改yum源地址,在CentOS-Base.repo文件中,会看到几个[Base]、[AppStream]等部分,每个部分都对应不同的软件仓库。可以把这些部分替换成官方源地址,保证每个部分都没标注#:
[baseos]
name=CentOS-8 - Base
baseurl=http://mirror.centos.org/centos/8/BaseOS/$basearch/os/
gpgcheck=1
enabled=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-8
[appstream]
name=CentOS-8 - AppStream
baseurl=http://mirror.centos.org/centos/8/AppStream/$basearch/os/
gpgcheck=1
enabled=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-8
CentOS 官方镜像站点地址是 http://mirror.centos.org/centos/8/,你可以根据需要选择其他镜像源。最后保存文件并推出。如果是使用vi编辑器,按下Esc在输入:wq回车。
如果是需要更换为国内镜像资源,如果在国内使用CentOS 8,访问默认的 CentOS 镜像源可能较慢,因此可以使用国内的镜像源来提升速度。以下是几个常用的国内镜像源。中科大镜像源:
[baseos]
name=CentOS-8 - Base - USTC
baseurl=https://mirror.iscas.ac.cn/centos/8/BaseOS/$basearch/os/
gpgcheck=1
enabled=1
gpgkey=https://mirror.iscas.ac.cn/centos/RPM-GPG-KEY-CentOS-8
[appstream]
name=CentOS-8 - AppStream - USTC
baseurl=https://mirror.iscas.ac.cn/centos/8/AppStream/$basearch/os/
gpgcheck=1
enabled=1
gpgkey=https://mirror.iscas.ac.cn/centos/RPM-GPG-KEY-CentOS-8
清华大学镜像源:
[baseos]
name=CentOS-8 - Base - TUNA
baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos/8/BaseOS/$basearch/os/
gpgcheck=1
enabled=1
gpgkey=https://mirrors.tuna.tsinghua.edu.cn/centos/RPM-GPG-KEY-CentOS-8
[appstream]
name=CentOS-8 - AppStream - TUNA
baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos/8/AppStream/$basearch/os/
gpgcheck=1
enabled=1
gpgkey=https://mirrors.tuna.tsinghua.edu.cn/centos/RPM-GPG-KEY-CentOS-8
编辑 CentOS-Base.repo 文件,将文件中的 baseurl 和 mirrorlist 更新为上述的国内镜像源之一。保存并退出。
更改源成功后,就可以清理现有yum缓存,确保新配置生效:
sudo dnf clean all
sudo dnf makecache
测试新yum源配置:
sudo dnf update
如果没有问题,系统会开始使用新的镜像源来进行软件包更新。可以尝试安装软件包验证yum的配置:
sudo dnf install wget
以上就是关于个人用户为CentOS 8 配置合适的 yum源的流程。在中国国内建议使用国内镜像源,有利于大大提高软件包下载速度。配置成功后用dnf工具更新和安装软件包也会更顺畅。