当前位置: 首页 > article >正文

解决新安装CentOS 7系统mirrorlist.centos.org can‘t resolve问题

原因

mirrorlist.centos.org yum源用不了

解决办法就是

# cd /etc/yum.repos.d/
# mv CentOS-Base.repo CentOS-Base.repo_bak
# vim CentOS-Base.repo

CentOS系统操作

# mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/*.repo_bak
# curl -o /etc/yum.repos.d/CentOS-Linux-BaseOS.repo http://vault.centos.org/8.5.2111/BaseOS/x86_64/os/
# curl -o /etc/yum.repos.d/CentOS-Linux-AppStream.repo http://vault.centos.org/8.5.2111/AppStream/x86_64/os/
# curl -o /etc/yum.repos.d/CentOS-Linux-Extras.repo http://vault.centos.org/8.5.2111/extras/x86_64/os/

文本内容如下

大陆机器
[base]
name=CentOS-$releasever
enabled=1
failovermethod=priority
baseurl=http://mirrors.cloud.aliyuncs.com/centos/$releasever/os/$basearch/
gpgcheck=1
gpgkey=http://mirrors.cloud.aliyuncs.com/centos/RPM-GPG-KEY-CentOS-7

[updates]
name=CentOS-$releasever
enabled=1
failovermethod=priority
baseurl=http://mirrors.cloud.aliyuncs.com/centos/$releasever/updates/$basearch/
gpgcheck=1
gpgkey=http://mirrors.cloud.aliyuncs.com/centos/RPM-GPG-KEY-CentOS-7

[extras]
name=CentOS-$releasever
enabled=1
failovermethod=priority
baseurl=http://mirrors.cloud.aliyuncs.com/centos/$releasever/extras/$basearch/
gpgcheck=1
gpgkey=http://mirrors.cloud.aliyuncs.com/centos/RPM-GPG-KEY-CentOS-7
非大陆机器
[base]
name=CentOS-$releasever - Base
baseurl=https://vault.centos.org/7.9.2009/os/$basearch
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#released updates 
[updates]
name=CentOS-$releasever - Updates
baseurl=https://vault.centos.org/7.9.2009/updates/$basearch
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras
baseurl=https://vault.centos.org/7.9.2009/extras/$basearch
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus
baseurl=https://vault.centos.org/7.9.2009/centosplus/$basearch
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

刷新yum源

# yum clean all
# yum makecache
# yum update

http://www.kler.cn/a/442141.html

相关文章:

  • Social LSTM:Human Trajectory Prediction in Crowded Spaces | 文献翻译
  • MATLAB基础应用精讲-【优化算法】阿基米德优化算法(附MATLAB代码实现)
  • 【转】厚植根基,同启新程!一文回顾 2024 OpenHarmony 社区年度工作会议精彩瞬间
  • 服务器迁移MySQL
  • 计算机网络 (47)应用进程跨越网络的通信
  • CV与NLP经典大模型解读
  • 前端的知识(部分)
  • 太阳能发电模拟系统设计与实现
  • Rust中自定义Debug调试输出
  • 101. 对称二叉树(java)
  • Visual studio的AI插件-通义灵码
  • fastAPI接口——设置API密钥令牌
  • 探索Starship:一款用Rust打造的高性能终端
  • [计算机网络]ARP协议的故事:小明找小红的奇妙旅程
  • 前端面试问题集合
  • leetcode 栈部分笔记
  • stm32 ota程序不能跳转
  • Node.js 文件系统
  • WPF系列一:窗口设置无边框
  • 某“银狐”样本清除思路
  • 记一次自定义类型处理器未生效的原因
  • 基于微信小程序的电影院订票选座系统ssm+论文源码调试讲解
  • 最大堆【东北大学oj数据结构9-2】C++
  • 开源AI呼入机器人、AI呼出机器人的优点
  • Docker 镜像源 阿里镜像源限制后其他镜像源
  • vue3+ts使用二维码功能