CentOS Stream是一个持续交付的Linux发行版,它在RHEL之前处于领先地位。它将具有滚动发布,即不断进行更改。CentOS将成为一个上游版本,它将具有测试补丁和更新。随着2021年底,Centos Linux 8停止支持,最好的选择是迁移到CentOS Stream版本中。 |
CentOS 6于2020年11月30日到期。Redhat将继续更新CentOS 7,直到2024年6月30日。但是将不再有任何CentOS 9版本。
你当前是否正在使用CentOS 8呢?如果想要转换为CentOS Stream,可以参考以下步骤进行转换:
CentOS Stream仓库
删除rpo cd /etc/yum.repos.d rm * -rf 删除所有文件 wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-8.repo //下载rpo sed -i "s|\$releasever|8-stream|g" /etc/yum.repos.d/CentOS-*.repo 替换为stream注意引号输入格式是否正确
vi CentOS-Base.repo 查看是否更换成功
运行dnf进行系统更新
dnf update
dnf swap centos-linux-repos centos-stream-repos
dnf distro-sync
使用以下命令验证系统是否是centos-stream版本:
[root@localhost ~]# cat /etc/centos-release 或者 [root@localhost ~]# cat /etc/os-release
重启系统之后,默认启动CentOS Stream 8版本的啦!(更新完成,切记重启)