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

centos7的yum镜像源设置

sudo yum repolist

查看镜像源连接情况,not found即为连接失败

sudo cp -r /etc/yum.repos.d /etc/yum.repos.d.backup

备份镜像源文件

sudo nano /etc/yum.repos.d/CentOS-Base.repo

进入镜像源文件编辑内容

# CentOS-Base.repo
#
# The mirror system uses the connecting IP address of the client and the
# update status of each mirror to pick mirrors that are updated to and
# geographically close to the client.  You should use this for CentOS updates
# unless you are manually picking other mirrors.
#
# If the mirrorlist= does not work for you, as a fall back you can try the
# remarked out baseurl= line instead.
#
#[base]
name=CentOS-$releasever - Base - mirrors.aliyun.com
baseurl=http://mirrors.aliyun.com/centos/$releasever/os/$basearch/
gpgcheck=1
gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-7[updates]
name=CentOS-$releasever - Updates - mirrors.aliyun.com
baseurl=http://mirrors.aliyun.com/centos/$releasever/updates/$basearch/
gpgcheck=1
gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-7[extras]
name=CentOS-$releasever - Extras - mirrors.aliyun.com
baseurl=http://mirrors.aliyun.com/centos/$releasever/extras/$basearch/
gpgcheck=1
gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-7[centosplus]
name=CentOS-$releasever - Plus - mirrors.aliyun.com
baseurl=http://mirrors.aliyun.com/centos/$releasever/centosplus/$basearch/
gpgcheck=1
enabled=0
gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-7

将文件内容更新如图所示,阿里的镜像源(使用了官方的好像不行,也是需要改文件即可)

Ctrl+o为保存内容

Ctrl+x为退出编辑

sudo yum clean all

sudo yum repolist enabled        #查看一下镜像源列表,sudo是针对于特殊文件用户,可取消试试


sudo yum makecache
sudo yum update

清除yum缓存并更新内容

直至出现完毕!即为更新成功


http://www.mrgr.cn/news/80108.html

相关文章:

  • sh -x -u的作用
  • MySQL ON DUPLICATE KEY UPDATE影响行数
  • 【数据结构】循环队列原理与代码
  • 物联网中的数据收集:MQTT实现的比较
  • 手机实时提取SIM卡打电话的信令声音--社会价值(一、方案解决了什么问题)
  • ragflow连不上ollama的解决方案
  • 暂停一下,给Next.js项目配置一下ESLint(Next+tailwind项目)
  • 程序的调试
  • 6.2 MapReduce工作原理
  • QT笔记- QSystemTrayIcon系统托盘功能完整示例
  • 【C++】简单计算器问题的深度解析与优化对比
  • 【Qt】信号、槽
  • ESP32-S3模组上跑通ES8388(30)
  • C++3--内联函数、auto
  • virtualbox 搭建ubuntu
  • ---mysql server: Ubuntu Linux下最最基本的操作
  • 关于睡懒觉
  • Elasticsearch 集群部署
  • Stable Diffusion Controlnet常用控制类型解析与实战课程 4
  • RabbitMQ中的Work Queues模式
  • 使用Nexus3搭建npm私有仓库
  • 八大排序算法C语言版
  • 112.【C语言】数据结构之排序(详解插入排序)
  • 在 Ubuntu 24.04.1 LTS (WSL) 中使用 openssl 生成 keybox.xml
  • 进程保活机制
  • 深度学习中的多通道卷积与偏置过程详解