为各版本linux添加yum源

Posted

tags:

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

为各版本linux添加yum源

这里我就以Centos 6.5 来做演示 首先先百度下对应版本的yun源

国内比较好的yum源主要是阿里云、163以及搜狐的,更新yum的命令如下:

//更新为阿里云的源

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

//更新为163的源
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS6-Base-163.repo

//更新为搜狐的源
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.sohu.com/help/CentOS-Base-sohu.repo

1.进入yum源配置目录

 cd /etc/yum.repos.d

2.做什么改动前最后都做个备份 以防出错 还能恢复

mv CentOS-Base.repo CentOS-Base.repo.bak

3.下载新的CentOS-Base.repo 到/etc/yum.repos.d/

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

4.运行yum makecache生成缓存

yum clean all
yum makecache

以上是关于为各版本linux添加yum源的主要内容,如果未能解决你的问题,请参考以下文章

如何管理在每个 git 版本中添加私有代码片段?

Linux 添加yum命令

linux中怎么查看mysql数据库版本

Linux将 Git 更新至最新版本(yum)

使用yum更新时不升级Linux内核的方法

Linux中升级更新命令yum upgrade和yum update的区别