CentOS

📂 文件列表

状态: | 上次更新时间: | 更新源: | 镜像大小:


注意:该源只提供 x86_64 架构的 CentOS 7 与 8。如需较早版本的 CentOS,请转至 CentOS Vault 源。

对于 CentOS 7,替换配置文件中的相应字符串:

sudo sed -e 's|^mirrorlist=|#mirrorlist=|g' \
         -e 's|^#baseurl=http://mirror.centos.org/centos|baseurl=http://mirrors.jxust.edu.cn/centos|g' \
         -i.bak \
         /etc/yum.repos.d/CentOS-*.repo
              

对于 CentOS 8,替换配置文件中的相应字符串:

sudo sed -e 's|^mirrorlist=|#mirrorlist=|g' \
         -e 's|^#baseurl=http://mirror.centos.org/$contentdir|baseurl=http://mirrors.jxust.edu.cn/centos|g' \
         -i.bak \
         /etc/yum.repos.d/CentOS-*.repo
              

如果只需替换某些文件中的源,请勿使用上述 * 通配符,改用具体文件名。若某些 repo 未生效,请检查相应的 enabled 的值是否为 1。

最后,更新软件包缓存:

sudo yum makecache