CentOS AppStream 8 手动更新 yum源

由于CentOS 8的官方支持已在2021年12月31日结束,官方镜像中的CentOS 8包已被移除。因此,如果您仍然需要运行CentOS 8并更新其yum源,您可以考虑使用以下步骤来配置一个可用的yum源,例如阿里云的镜像源。

https://mirrors.aliyun.com/centos/8-stream/?spm=a2c6h.25603864.0.0.132666edLGinrb

1.备份现有的yum源配置文件:

cd /etc/yum.repos.d/

mkdir backup

mv *.repo backup/

2.编辑yum源配置文件:

a.手动创建CentOS-AppStream.repo

vim CentOS-AppStream.repo

i

[appstream]

name=CentOS-8-stream - AppStream

baseurl=https://mirrors.aliyun.com/centos/8-stream/AppStream/$basearch/os/

gpgcheck=1 enabled=1

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial

保存退出;

b.手动创建CentOS-BaseOS.repo

vim CentOS-BaseOS.repo

i

[baseos]

name=CentOS-8-stream - BaseOS

baseurl=https://mirrors.aliyun.com/centos/8-stream/BaseOS/$basearch/os/

gpgcheck=1 enabled=1

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial

保存退出;

c.手动创建CentOS-Devel.repo

vim CentOS-Devel.repo

i

[baseos]

name=CentOS-8-stream - Devel

baseurl=https://mirrors.aliyun.com/centos/8-stream/Devel/$basearch/os/

gpgcheck=1 enabled=1

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial

保存退出;

d.手动创建CentOS-Extras.repo

vim CentOS-Extras.repo

i

[baseos]

name=CentOS-8-stream - Extras

baseurl=https://mirrors.aliyun.com/centos/8-stream/Extras/$basearch/os/

gpgcheck=1 enabled=1

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial

保存退出;

4.清空并重建yum缓存:

yum clean all

yum makecache

5.更新软件包:

yum update

相关推荐
朝九晚五ฺ4 分钟前
【Linux探索学习】第十四弹——进程优先级:深入理解操作系统中的进程优先级
linux·运维·学习
自由的dream7 分钟前
Linux的桌面
linux
xiaozhiwise38 分钟前
Makefile 之 自动化变量
linux
Kkooe1 小时前
GitLab|数据迁移
运维·服务器·git
久醉不在酒2 小时前
MySQL数据库运维及集群搭建
运维·数据库·mysql
谭震鸿2 小时前
Zookeeper集群搭建Centos环境下
分布式·zookeeper·centos
意疏3 小时前
【Linux 篇】Docker 的容器之海与镜像之岛:于 Linux 系统内探索容器化的奇妙航行
linux·docker
虚拟网络工程师3 小时前
【网络系统管理】Centos7——配置主从mariadb服务器案例(下半部分)
运维·服务器·网络·数据库·mariadb
BLEACH-heiqiyihu3 小时前
RedHat7—Linux中kickstart自动安装脚本制作
linux·运维·服务器