歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux綜合 >> 學習Linux >> centos 7 使用 163 yum 源

centos 7 使用 163 yum 源

日期:2017/3/6 9:48:33   编辑:學習Linux

centos 7 使用 163 yum 源


centos 7 使用 163 yum 源


這篇文章介紹如何使用 163 yum 源。

一般是下載 .repo 源即可,但有時候我們需要安裝一些額外的包,就需要下載 Extra Packages for Enterprise Linux (EPEL) 源, 比如我們需要用 yum 安裝 ansible ,就需要安裝 epel 。

  1. 安裝 repo 源。

    repo 源一般包括 base, updates, Extras 三部分。
    $ cd /etc/yum.repos.d/
    $ wget http://mirrors.163.com/.help/CentOS7-Base-163.repo
    如果還有其他源,可以暫且把他們重命名成其他擴展名,比如 centos-base.repo.bak
    $ mv CentOS7-Base-163.repo CentOS7-Base.repo
    $ yum clean all
    $ yum makecache

  2. 安裝 epel 源。

    $ yum install epel-release
    $ yum makecache

  3. 檢查是否安裝成功

    $ yum repolist

    Loaded plugins: fastestmirror, langpacksLoading mirror speeds from cached hostfile * epel: ftp.cuhk.edu.hkrepo id                                               repo name                                                                           statusbase/7/x86_64                                         CentOS-7 - Base - 163.com                                                            9,007epel/x86_64                                           Extra Packages for Enterprise Linux 7 - x86_64                                      10,133extras/7/x86_64                                       CentOS-7 - Extras - 163.com                                                            310updates/7/x86_64                                      CentOS-7 - Updates - 163.com                                                         1,687repolist: 21,137

    從上面的輸出可以看出,我們安裝了 repo 的三個部分 base, updates, Extras. 而 EPEL 則安裝了 epel 部分。

http://xxxxxx/Linuxjc/1134198.html TechArticle

Copyright © Linux教程網 All Rights Reserved