Red Hat Enterprise Linux 7.3更换CentOS 7 yum源

RedHat yum源是收费的,没有注册的Redhat机器是不能使用yum源的。

1、当前系统环境:

系统版本:Red Hat Enterprise Linux Server release 7.3 (Maipo)

软件环境:系统默认是自带了yum程序的,需要卸载,安装CentOS

2、更换yum源:

1) 卸载本地yum:

# rpm -qa|grep yum      #查看本地yum

Red Hat Enterprise Linux 7.3更换CentOS 7 yum源

# rpm -qa|grep yum|xargs rpm -e --nodeps       #卸载本地yum,不检查依赖性,卸载yum程序

# rpm -qa | grep Python-urlgrabber | xargs rpm -e --nodeps   

2) 下载CentOS yum程序

#  wget       

#  wget       

#  wget       

使用wget命令下载,也可以用浏览器下载。rpm包下载地址 ,包的版本会有更新,选择最新版本下载

安装CentOS yum程序

为避免他们之间互相依赖,三个程序一起安装

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

Red Hat Enterprise Linux 7.3更换CentOS 7 yum源

安装报错,依赖软件版本不兼容,

警告:yum-3.4.3-161.el7.centos.noarch.rpm: 头V3 RSA/SHA256 Signature, 密钥 ID f4a80eb5: NOKEY   
错误:依赖检测失败:                                                                                                                                   
python-urlgrabber >= 3.10-8 被 yum-3.4.3-161.el7.centos.noarch 需要                                                         
rpm >= 0:4.11.3-22 被 yum-3.4.3-161.el7.centos.noarch 需要                                                                       

重新下载新版本的依赖软件,安装更新

#  wget     

#  wget     

#  wget     

#  wget     

#  wget     

#  wget     

#  wget     

#  wget     

#  wget     

#  wget       

#  wget       

更新依赖软件:

# rpm –ivh python-* 

# rpm -ivh libxml*   

# rpm –Uvh rpm*   

Red Hat Enterprise Linux 7.3更换CentOS 7 yum源

再次安装yum程序

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

安装报错:

Red Hat Enterprise Linux 7.3更换CentOS 7 yum源

错误:依赖检测失败:                                                                                   
python-urlgrabber >= 3.10-8 被 yum-3.4.3-161.el7.centos.noarch 需要       

Python-urlgrabber版本不兼容,下载对应的版本。

#  wget  ftp://ftp.icm.edu.pl/vol/rzm3/linux-centos-altarch/7.5.1804/os/armhfp/Packages/python-urlgrabber-3.10-8.el7.noarch.rpm     

安装:

# rpm -ivh python-urlgrabber-3.10-8.el7.noarch.rpm   

Red Hat Enterprise Linux 7.3更换CentOS 7 yum源

再次安装yum程序

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

Red Hat Enterprise Linux 7.3更换CentOS 7 yum源

安装成功。

3) repo 配置文件

下载配置文件

#  cd /etc/yum.repos.d/  #进入到yum配置文件目录

#  wget     #下载配置文件

设置配置文件

# sed -i "s;\$releasever;7;g" CentOS7-Base-163.repo   

替换新的repo文件

# mv redhat.repo redhat.repo.bak   

配置文件内容如下:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/12311.html