将你的CentOS 7 配置yum源

Posted MineGi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将你的CentOS 7 配置yum源相关的知识,希望对你有一定的参考价值。

将你的CentOS 7 配置yum源

0、图床

点此快速打开文章图床_将你的CentOS 7 配置yum源

1、方法1

1.1 备份系统的 repo

ls /etc/yum.repos.d/
mkdir -p /etc/yum.repos.d/bak  -->创建备份目录
/bin/mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/bak  -->备份系统原先的源
!ls

1.2 安装阿里云的 repo 源(以CentOS 7 为例)

curl -s -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
curl -s -o /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
yum clean all  -->清除缓存
!ls

1.3 安装软件测试一下

rpm -qa wget  -->先查看有没有wget(下载工具)软件
yum install -y wget  -->然后安装
!rpm

2、方法2

2.1 将方法1的 repo 源移动到 bak

cd /etc/yum.repos.d/
ls
\\mv *.repo bak/

2.2 下载对应版本repo文件,放入/etc/yum.repos.d/(操作前请做好相应备份)

  • CentOS5http://mirrors.163.com/.help/CentOS5-Base-163.repo
  • CentOS6http://mirrors.163.com/.help/CentOS6-Base-163.repo
  • CentOS7http://mirrors.163.com/.help/CentOS7-Base-163.repo
ls
wget http://mirrors.163.com/.help/CentOS7-Base-163.repo
ls

2.3 生成缓存

yum clean all
yum makecache

『MineGi有话说』:快来扫一扫下面链接的二维码,加入我们吧!

以上是关于将你的CentOS 7 配置yum源的主要内容,如果未能解决你的问题,请参考以下文章

将你的 CentOS 变成 OSPF 路由器

centos 7 yum 安装 MongoDB 4.2

CentOS yum 命令出现 [Errno 14] curl#6 - "Couldn't resolve host ..." 的解决方法(代码片段

centos 7 常用yum源配置

用 7 行 JSON 代码将你的网站变成移动应用

CentOS 6 使用 yum 安装MongoDB及服务器端配置