Centos 软件安装源的选择对于国人来说还是非常有必要的,谁也不想每次都跑到国外软件源去检索和安装软件,毕竟那个速度不是你我能够接受的痛 :)
其实弄起来 So Easy!Centos 安装时如果选择中文那么首次 yum install 时会发现选择的就是 mirrors.aliyun.com !
准备工作:
1、在 http://mirrors.aliyun.com/repo/ 阿里云上包含 Centos、epel、fedora查找自己需要的 repo 文件地址!
本服务器为 Centos 6.6 所以下载 http://mirrors.aliyun.com/repo/epel-6.repo
开始操作:
1、保证你安装过 wget ,如果使用 Centos Mini 安装的是不带这个玩意儿滴!
$ sudo yum install wget
2、备份原始文件,万一搞砸了有备无患!
$ sudo mv /etc/yum.repos.d/CentOS-Base.repo CentOS-Base.repo.bak
3、下载 repo 文件
$ sudo wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/epel-6.repo
4、清空、重建索引缓存
$ sudo yum clean all $ sudo yum makecache>
5、验证结果,search 信息中可以看到 base、extras、updates 都显示 mirrors.aliyun.com
$ sudo yum search vim Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirrors.aliyun.com * extras: mirrors.aliyun.com * updates: mirrors.aliyun.com
文章来源:http://blog.csdn.net/johnnycode/article/details/41697573