我是靠谱客的博主 伶俐酒窝,最近开发中收集的这篇文章主要介绍CentOS配置互联网镜像源,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

CentOS配置互联网镜像源

警告

操作前请做好相应备份。

对于 CentOS 8,使用以下命令替换默认的配置
中国科学技术大学镜像站

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

清华大学镜像站

sudo sed -e 's|^mirrorlist=|#mirrorlist=|g' 
         -e 's|^#baseurl=http://mirror.centos.org/$contentdir|baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos|g' 
         -i.bak 
         /etc/yum.repos.d/CentOS-Base.repo 
         /etc/yum.repos.d/CentOS-Extras.repo 
         /etc/yum.repos.d/CentOS-AppStream.repo

对于 CentOS 6、7,使用以下命令替换默认配置

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

以上命令只替换了默认启用的仓库。替换之后请运行 yum makecache 更新缓存。

最后

以上就是伶俐酒窝为你收集整理的CentOS配置互联网镜像源的全部内容,希望文章能够帮你解决CentOS配置互联网镜像源所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部