安装RedHat / CentOS 后,因为认证的问题,系统自带的yum不能使用,导致安装或更新rpm包太麻烦,特别是涉及到rpm包依赖的时候,很是花费时间和精力。

有了yum之后生活就一下子美好起来了,比如安装gcc编译器,只要运行“yum install gcc”命令就行了,yum会自动安装gcc依赖的包。

RedHat 不让使用yum来下载他所提供的rpm包,幸而我们可以选择的是使用CentOS提供的rpm包,以下是配置yum的具体步骤。

 

一、删除RedHat.Enterprise.Linux.5.2自带的yum

rpm -qa | grep -i yum

然后用 rpm -e 删除这些找到的yum包

 

二、下载CentOS yum包

首先,备份yum包

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

 

其次,下载yum包

CentOS 7.x

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

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS7-Base-163.repo

cd /etc/yum.repos.d/

cp etc_yum.repos.d_CentOS7-Base-163.repo /etc/yum.repos.d/CentOS-Base.repo

cp etc_yum.repos.d_CentOS7-Base-aliyun.repo /etc/yum.repos.d/CentOS-Base.repo

 

CentOS 6.x

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

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS6-Base-163.repo

 

CentOS 5.x

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

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS5-Base-163.repo

 

添加 epel 源

yum install epel-release
rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm

 

然后,重置缓存

yum clean all
yum makecache
yum list

 

三、安装 yum

rpm -Uvh *.rpm 来安装,如果没安装失败,可以一个一个包的装。

 

四、配置 CentOS yum

cp /etc/yum.repos.d/CentOS-Base.repo CentOS-Base.repo.org

 

参考推荐

RedHat yum 源配置

ADSL 拨号上网的 pppoe、eth0、eth1、ppp0 区别