码迷,mamicode.com
首页 > 系统相关 > 详细

Linux 修改yum源

时间:2019-11-09 11:48:12      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:html   code   string   comm   ==   lease   container   contain   bash   

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源

标签:html   code   string   comm   ==   lease   container   contain   bash   

原文地址:https://www.cnblogs.com/shuangfeike/p/11824343.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!