zoukankan      html  css  js  c++  java
  • redhat7 配置使用centos的yum源

    1.查看RHEL是否安装了yum:

    rpm -qa |grep yum

    2 删除redhat自带的yum包:

    rpm -qa|grep yum|xargs rpm -e --nodeps(不检查依赖,直接删除rpm包)

    rpm -qa |grep yum

    3.下载新的yum包。使用Centos7的yum包:

    wget https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/yum-metadata-parser-1.1.4-10.el7.x86_64.rpm

    wget https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/yum-3.4.3-161.el7.centos.noarch.rpm

    wget https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/yum-plugin-fastestmirror-1.1.31-50.el7.noarch.rpm

    wget https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/yum-utils-1.1.31-50.el7.noarch.rpm

    wget https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/python-urlgrabber-3.10-9.el7.noarch.rpm

    wget https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/python-chardet-2.2.1-1.el7_1.noarch.rpm

    wget https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/python-kitchen-1.1.1-5.el7.noarch.rpm

    rpm -ivh python-urlgrabber-3.10-9.el7.noarch.rpm

    rpm -ivh python-chardet-2.2.1-1.el7_1.noarch.rpm

    rpm -ivh python-kitchen-1.1.1-5.el7.noarch.rpm

    rpm -ivh yum-metadata-parser-1.1.4-10.el7.x86_64.rpm yum-plugin-fastestmirror-1.1.31-50.el7.noarch.rpm yum-utils-1.1.31-50.el7.noarch.rpm yum-3.4.3-161.el7.centos.noarch.rpm

    4.更换yum源。使用阿里云的源

       cd  /etc/yum.repos.d

       mv redhat.repo redhat.repo.bak

    CentOS 7
    wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
    修改CentOS-Base.repo文件中的$releasever全部替换为版本号 7
    mv CentOS-Base.repo redhat.repo
    运行yum makecache生成缓存
    yum clean all
    yum makecache
    yum update
  • 相关阅读:
    ssize_t与size_t的前世今生
    jQuery 中的事件参数传递机制
    链表的container_of 疑惑
    c 语言使用疑惑小记
    IQueryFilter的WhereClause详解
    给自己鼓励...
    什么是闭包,我的理解
    WCF 第五章 行为 为服务终结点行为实现一个消息检测器
    WCF 第五章 行为 事务之事务服务行为
    WCF 第四章 绑定 wsHttpBinding
  • 原文地址:https://www.cnblogs.com/yuanqc/p/10565638.html
Copyright © 2011-2022 走看看