Linux(CentOS6.5)修改默认yum源为国内的阿里云网易yum源
Posted Comex
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux(CentOS6.5)修改默认yum源为国内的阿里云网易yum源相关的知识,希望对你有一定的参考价值。
官方的yum源在国内访问效果不佳。
需要改为国内比较好的阿里云或者网易的yum源
修改方式:
echo 备份当前的yum源 mv /etc/yum.repos.d /etc/yum.repos.d.backup4comex echo 新建空的yum源设置目录 mkdir /etc/yum.repos.d echo 下载阿里云的yum源配置 wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
然后重建缓存:
yum clean all yum makecache
========================我是可爱的分割线========================
执行报错“-bash: wget: command not found”的解决方式
执行报错:
原来默认的centos最小版是没有安装wget的。我们需要先yum安装一下。
回滚配置
cp /etc/yum.repos.d.backup4comex/* /etc/yum.repos.d
然后yum安装wget
yum install wget -y
然后再次获取:
rm -rf /etc/yum.repos.d mkdir /etc/yum.repos.d wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
以上是关于Linux(CentOS6.5)修改默认yum源为国内的阿里云网易yum源的主要内容,如果未能解决你的问题,请参考以下文章