RHEL配置Centos yum源的方法
由于RHEL的yum在线更新是收费的,如果没有注册的话是不能使用的,即不能在线安装软件。在这种情况下,如果我们使用的机器安装的是RHEL系统要是每次安装软件先挂载本地光盘会很繁琐,而且有些软件也是老版本的,这种情况下我们可以借助CentOS的YUM源来满足我们的需求。
一、删除RHEL原有的YUM
rpm -aq|grep yum|xargs rpm -e --nodeps
二、下载CentOS的yum安装包(163源)
wget http://mirrors.163.com/centos/5/os/x86_64/CentOS/yum-3.2.22-40.el5.centos.noarch.rpm
wget http://mirrors.163.com/centos/5/os/x86_64/CentOS/yum-fastestmirror-1.1.16-21.el5.centos.noarch.rpm
wget http://mirrors.163.com/centos/5/os/x86_64/CentOS/yum-metadata-parser-1.1.2-4.el5.x86_64.rpm
wget http://mirrors.163.com/centos/5/os/x86_64/RPM-GPG-KEY-CentOS-5
三、安装CentOS的YUM安装包
yum和yum-plugin-fastestmirror需要一起安装,这两个包存在依赖关系,分开安装会失败,安装之前先把RPM-GPG-KEY导入系统,否则会出现警告信息
rpm -ivh yum-metadata-parser-1.1.2-4.el5.x86_64.rpm
rpm --import RPM-GPG-KEY-CentOS-5
rpm –ivh yum-3.2.22-40.el5.centos.noarch.rpm yum-fastestmirror-1.1.16-21.el5.centos.noarch.rm
至此我们就可以在线使用yum了
四、修改yum源
为了使用在线使用Yum安装软件更快,我们可以使用国内的网易Yum源或者其他国内yum源
五、更改yum源
#我们使用网易的CentOS镜像源
cd /etc/yum.repos.d/
vi rhel-debuginfo.repo
# CentOS-Base.repo
#
# The mirror system uses the connecting IP address of the client and the
# update status of each mirror to pick mirrors that are updated to and
# geographically close to the client. You should use this for CentOS updates
# unless you are manually picking other mirrors.
#
# If the mirrorlist= does not work for you, as a fall back you can try the
# remarked out baseurl= line instead.
#
#
[base]
name=CentOS-5 - Base - 163.com
mirrorlist=http://mirrorlist.centos.org/?release=5&arch=$basearch&repo=os
baseurl=http://mirrors.163.com/centos/5/os/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
#released updates
[updates]
name=CentOS-5 - Updates - 163.com
mirrorlist=http://mirrorlist.centos.org/?release=5&arch=$basearch&repo=updates
baseurl=http://mirrors.163.com/centos/5/updates/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
#packages used/produced in the build but not released
[addons]
name=CentOS-5 - Addons - 163.com
mirrorlist=http://mirrorlist.centos.org/?release=5&arch=$basearch&repo=addons
baseurl=http://mirrors.163.com/centos/5/addons/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
#additional packages that may be useful
[extras]
name=CentOS-5 - Extras - 163.com
mirrorlist=http://mirrorlist.centos.org/?release=5&arch=$basearch&repo=extras
baseurl=http://mirrors.163.com/centos/5/extras/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-5 - Plus - 163.com
mirrorlist=http://mirrorlist.centos.org/?release=5&arch=$basearch&repo=centosplus
baseurl=http://mirrors.163.com/centos/5/centosplus/$basearch/
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
#contrib - packages by Centos Users
[contrib]
name=CentOS-5 - Contrib - 163.com
mirrorlist=http://mirrorlist.centos.org/?release=5&arch=$basearch&repo=contrib
baseurl=http://mirrors.163.com/centos/5/contrib/$basearch/
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
六、清理
yum clean all
yum makecache
七、更新
yum update
相关文章
- 这篇文章主要介绍了RHEL系统恢复安装光盘中的yum更新源的方法,文中的示例环境为RHEL6.1,同时同为RedHat系的CentOS6.1中的做法也类似,需要的朋友可以参考下2016-04-12
- 这篇文章主要介绍了在RHEL系统中使用CentOS的yum源的方法,同样也适用于Fedora等Linux系统,需要的朋友可以参考下2015-07-08
- Centos默认安装如果是英文的话,选择中文不正常,firefox也只能见到方块的字.但有一个方法,其实很容易解决安装这二个包,然后你就可以见到中文啦.为了这个问题,我可是研究2008-09-18
- 今天小编为大家带来的是CentOS下通过yum查找并安装包的方法,希望可以帮助到大家,有需要的朋友一起去看看吧2016-12-23
- 今天小编为大家带来的是centos yum只更新安全补丁操作;希望可以帮助到大家;有需要的朋友可以过来看看2016-12-11
- 很多朋友还不知道CentOS中如何自定义yum仓库和配置文件;下面小编就为大家带来CentOS中自定义yum仓库和配置文件的方法;有需要的朋友一起去看看吧2016-12-08
- 这篇文章主要介绍了Centos yum源更换为国内的阿里云镜像源的方法,需要的朋友可以参考下2016-10-08
- 这篇文章主要介绍了在CentOS系统中通过yum安装VLC播放器的教程,VLC是Linux系统中人气最高的视频播放器,其自带的解码器也拥有众多用户在使用,需要的朋友可以参考下2016-04-11
- 这篇文章主要介绍了CentOS下yum软件包管理器的基本使用,包括yum软件仓库的搭建方法,需要的朋友可以参考下2015-11-30
- centos系统怎么查看软件安装路径?Linux系统一般都是命令行界面,对于安装的软件也是通过命令安装的。对于软件包更新和卸载等有时候需要查看检查是否有改软件,软件安装存2015-07-20
最新评论