Linux 修改yum源

Posted 双飞客·

tags:

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

Linux 修改yum源

第一种方式:

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

第二种方式:

1
vi yum.sh
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
mv /etc/yum.repos.d/* /mnt
a=`cat /etc/redhat-release |awk \'{print $3}\'|awk -F . \'{print $1}\'`
if [ $a == 6 ];then
   wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
else
   wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
fi
yum clean all
yum makecache
1
chmod 777 yum.sh 
1
./yum.sh

  

以上是关于Linux 修改yum源的主要内容,如果未能解决你的问题,请参考以下文章

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

Linux-修改CentOS默认yum源

CentOs Linux 对于 修改 yum源 为 阿里

Linux修改yum源为阿里云网易中国科技大学

Linux(CentOS7.1)修改默认yum源为国内的阿里云yum源

Linux(CentOS7.1)修改默认yum源为国内的阿里云yum源