CentOS Linux 8 停产所需本地变更

CentOS Linux 8 已于 2021 年 12 月 31 日结束生命周期 (EOL)。这意味着 CentOS 8 将不再从 CentOS 官方项目获得开发资源。在 2021 年 12 月 31 日之后,如果您需要更新您的 CentOS,您需要将镜像更改为vault.centos.org,它们将被永久存档。或者,您可能想要升级到 CentOS Stream。

# 进入REPO配置目录
shell > cd /etc/yum.repos.d/

# 更新配置和地址
shell > sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
shell > sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*

# 更新
shell > dnf update -y