zoukankan      html  css  js  c++  java
  • 修改CentOS默认yum源为国内yum镜像源

    CentOS默认的yum源不是国内的yum源,在通过yum安装一些软件的时候,会出现这样那样的错误,以及在下载安装的速度上也是非常慢的。

    所以这个时候就需要将yum源替换成国内的yum源,国内主要开源的开源镜像站点应该是网易和阿里云了。下面分别记录替换未阿里云和网易的方法:

    一、修改CentOS默认yum源为mirrors.aliyun.com

    1、首先备份系统自带的yum源配置文件     /etc/yum.repos.d/CentOS-Base.repo

    # mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

    2、进入yum源配置文件所在的文件夹

    # cd /etc/yum.repos.d/

    3、下载aliyun的yum源配置文件到/etc/yum.repos.d/

    CentOS 7:

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

    CentOS 6:

    # wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

    CentOS 5:

    # wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo

    4、运行yum makecache生成缓存

    # yum makecache

    5、更新系统

    # yum -y update

    二、修改CentOS默认yum源为mirrors.163.com

    1、首先备份系统自带的yum源配置文件     /etc/yum.repos.d/CentOS-Base.repo

    # mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

    2、进入yum源配置文件所在的文件夹

    # cd /etc/yum.repos.d/

    3、下载163的yum源配置文件到/etc/yum.repos.d/

    CentOS 7:

    # wget http://mirrors.163.com/.help/CentOS7-Base-163.repo

    CentOS 6:

    # wget http://mirrors.163.com/.help/CentOS6-Base-163.repo

    CentOS 5:

    # wget http://mirrors.163.com/.help/CentOS5-Base-163.repo

    4、运行yum makecache生成缓存

    # yum makecache

    5、更新系统

    # yum -y update

  • 相关阅读:
    codesmith 连接mysql
    数据库 价格字段 设置 decimal(8,2),价格为100W,只显示999999.99
    AOP和IOC
    Android Studio 每次运行都会再下载一遍,修改
    gradle 的jar下载到哪里了
    遇到的坑
    Error:Failed to resolve: :Base:
    re-download dependencies and 无法下载jar 的解决
    DI是实现面向切面和面向抽象的前提
    基础才是重中之重~ConcurrentDictionary让你的多线程代码更优美
  • 原文地址:https://www.cnblogs.com/guoxiangyue/p/9204584.html
Copyright © 2011-2022 走看看