zoukankan      html  css  js  c++  java
  • centos7配置yum源、epel源为国内镜像

    centos7配置yum源、epel源为国内镜像

     

    缺省yum源的服务器通常在国外,安装时速度比较慢。为了提高安装rpm包的速度,可以将yum源配置为国内的阿里repo。

    1、先备份系统原有的repo

       [root@localhost ~]#cd /etc/yum.repos.d/

       [root@localhost yum.repos.d]#ls

       CentOS-Base.repo  CentOS-Debuginfo.repo  CentOS-Media.repo    CentOS-Vault.repo  webtatic-archive.repo  webtatic-testing.repo   
       CentOS-CR.repo    CentOS-fasttrack.repo  CentOS-Sources.repo  epel.repo

       [root@localhost yum.repos.d]#mkdir backup

       [root@localhost yum.repos.d]# mv * ./backup/

    2、获取阿里centos7的base-repo

       [root@localhost yum.repos.d]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

       [root@localhost yum.repos.d]# ls
       backup  CentOS-Base.repo

    3、清除并重新生成yum cache

       [root@localhost yum.repos.d]# yum clean all

       [root@localhost yum.repos.d]# yum makecache

    4、测试一下新的yum源是否可用

    [root@localhost yum.repos.d]# yum install -y screen
    Loaded plugins: fastestmirror, langpacks
    Loading mirror speeds from cached hostfile
     * base: mirrors.aliyun.com
     * extras: mirrors.aliyun.com
     * updates: mirrors.aliyun.com
    Resolving Dependencies
    --> Running transaction check
    ---> Package screen.x86_64 0:4.1.0-0.25.20120314git3c2946.el7 will be installed
    --> Finished Dependency Resolution

    Dependencies Resolved

    ==================================================================================================================================================
     Package                     Arch                        Version                                                  Repository                 Size
    ==================================================================================================================================================
    Installing:
     screen                      x86_64                      4.1.0-0.25.20120314git3c2946.el7                         base                      552 k

    Transaction Summary
    ==================================================================================================================================================
    Install  1 Package

    Total download size: 552 k
    Installed size: 914 k
    Downloading packages:
    screen-4.1.0-0.25.20120314git3c2946.el7.x86_64.rpm                                                                         | 552 kB  00:00:00     
    Running transaction check
    Running transaction test
    Transaction test succeeded
    Running transaction
      Installing : screen-4.1.0-0.25.20120314git3c2946.el7.x86_64                                                                                 1/1
      Verifying  : screen-4.1.0-0.25.20120314git3c2946.el7.x86_64                                                                                 1/1

    Installed:
      screen.x86_64 0:4.1.0-0.25.20120314git3c2946.el7                                                                                                

    Complete!

    5、获取阿里centos7的epel-repo

    [root@localhost yum.repos.d]# wget https://mirrors.aliyun.com/repo/epel-7.repo

    6、清除并创建cache

    [root@localhost yum.repos.d]# ls
    backup  CentOS-Base.repo  epel-7.repo
    [root@localhost yum.repos.d]# yum clean all

    [root@localhost yum.repos.d]# yum makecache

    至此,大功告成!!!

     
     
  • 相关阅读:
    NoSQL、memcached介绍、安装memcached、查看memcached状态
    报警系统配置文件
    shell中的函数、数组、报警系统脚本
    for循环、while循环、break、continue、exit
    Shell脚本中的逻辑判断、文件目录属性判断、if的特殊用法、case判断
    Shell脚本、Shell脚本结构、date命令的用法、变量
    zabbix的自动发现、自定义添加监控项目、配置邮件告警
    rabbitMQ中的Vhost理解、创建和使用
    charset编码问题:YAMLException: java.nio.charset.MalformedInputException
    java jna 报错:Unable to load library
  • 原文地址:https://www.cnblogs.com/Zhao--C/p/12620816.html
Copyright © 2011-2022 走看看