gpt4 book ai didi

linux - 如何强制 yum 只更新到确切的次要操作系统版本

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:07:26 26 4
gpt4 key购买 nike

我有一个版本为 CentOS 6.7 的默认 AWS 镜像。如果我跑

yum update

我正在安装 CentOS 6.9。

有没有办法强制 yum 只更新到 6.8 而不是 6.9?

最佳答案

是的,这是可能的。请按照以下步骤操作:

  • 找到离您较近的镜子:http://mirrorlist.centos.org/?release=6&arch=x86_64&repo=os .
  • 将 6.9 替换为 6.8,例如,URL 如下所示:http://mirrors.gigenet.com/centos/6.8/os/x86_64/ .
  • /etc/yum.repos.d 中创建一个 yum repo 文件。我们将文件命名为 User-Stepped.repo

  • 文件内容如下所示:

    ~]# cat /etc/yum.repos.d/User-Stepped.repo
    [User_Stepped]
    name=A stepped repo - CentOS 6.8
    baseurl=http://mirrors.gigenet.com/centos/6.8/os/x86_64/
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6
  • 执行以下命令更新到CentOS 6.8

    ~]# yum clean all
    ~]# yum --disablerepo='*' --enablerepo=User_Stepped update

--enablerepo 中使用与您在 User-Stepped.repo 文件的方括号内使用的名称相同的名称。

关于linux - 如何强制 yum 只更新到确切的次要操作系统版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43804927/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com