RHEL6使用CentOS 6的yum源的配置方法

发布时间:2020-09-01编辑:脚本学堂
本文介绍下,在RHEL6系统中,配置并使用centos 6的yum源的方法,有需要的朋友参考学习下,希望对大家有一定的帮助。

本节内容:
RHEL6使用centos 6的yum

需求:
在RHEL6系统中使用CentOS的源。

操作步骤:
首先,删除之前yum源:
 

复制代码 代码示例:
rpm -aq|grep yum|xargs rpm -e --nodeps

安装如下的软件包:
 

python-iniparse-0.3.1-2.1.el6.noarch.rpm
yum-metadata-parser-1.1.2-14.1.el6.x86_64.rpm
yum-3.2.27-14.el6.centos.noarch.rpm
yum-plugin-fastestmirror-1.1.26-11.el6.noarch.rpm

注意:在google里搜索软件包小方法,可以这样直接搜索:
 

复制代码 代码示例:
yum-3.2.27-14.el6.centos.noarch.rpm intitle:index

安装完毕,配置yum的配置文件:
 

复制代码 代码示例:
cd /etc/yum.repos.d/
wget http://mirrors.163.com/.help/CentOS6-Base-163.repo
sed -i "s/$releasever/6/" CentOS6-Base-163.repo

系统是x86_64,163的镜像,请根据RHEL版本选择对应的版本。

然后,即可使用yum install安装软件了。
如果仍然报错的话,请编辑:/etc/yum.repos.d下的rhel-source.repo将所有的enable都设置为0,或直接删除rhel-source.repo即可。