这篇文章介绍如何使用 163 yum 源。

一般是下载 .repo 源即可,但有时候我们需要安装一些额外的包,就需要下载 Extra Packages for Enterprise Linux (EPEL) 源, 比如我们需要用 yum 安装 ansible ,就需要安装 epel 。

安装 repo 源。

repo 源一般包括 base, updates, Extras 三部分。

  1. $ cd /etc/yum.repos.d/
  2. $ wget http://mirrors.163.com/.help/CentOS7-Base-163.repo

如果还有其他源,可以暂且把他们重命名成其他扩展名,比如 centos-base.repo.bak

  1. $ mv CentOS7-Base-163.repo CentOS7-Base.repo
  2. $ yum clean all
  3. $ yum makecache

安装 epel 源。

  1. $ yum install epel-release
  2. $ yum makecache

检查是否安装成功

  1. $ yum repolist
  1. Loaded plugins: fastestmirror, langpacks
  2. Loading mirror speeds from cached hostfile
  3. * epel: ftp.cuhk.edu.hk
  4. repo id repo name status
  5. base/7/x86_64 CentOS-7 - Base - 163.com 9,007
  6. epel/x86_64 Extra Packages for Enterprise Linux 7 - x86_64 10,133
  7. extras/7/x86_64 CentOS-7 - Extras - 163.com 310
  8. updates/7/x86_64 CentOS-7 - Updates - 163.com 1,687
  9. repolist: 21,137

从上面的输出可以看出,我们安装了 repo 的三个部分 base, updates, Extras. 而 EPEL 则安装了 epel 部分。

分类: web

标签:   yum   linux