redhat5安装yum

服务器默认装的是rehl5版本,而且还没在红帽官网上注册,虽然系统也默认装了yum,但是不能从其源地址进行软件的下载安装。

This system is not registered with RHN.
RHN support will be disabled.
在使用yum安装软件时显示以上提示,由于系统是静默安装,没有安装全部的必须软件,而且在安装时的各种依赖太疼了,所以整个yum直接解决安装的各种rpm依赖问题是很爽的一件事。

在网上海搜了几个不同的安装方法,然后根据自己的经验,总结了下。

首先推荐一个开源软件镜像的地址http://mirrors.ustc.edu.cn/。仔细找下,基本都能找到对应系统版本,由于rehl5的yum不能用了,直接换Centos5的yum,http://mirrors.ustc.edu.cn/centos/5/os/i386/CentOS/这是具体的地址,还能找到fedora的ubuntu的各种linux系统。

我们需要的rpm主要有yum-3.2.22-33.el5.centos.noarch.rpm,yum-downloadonly-1.1.16-14.el5.centos.1.noarch.rpm,yum-fastestmirror-1.1.16-14.el5.centos.1.noarch.rpm,yum-metadata-parser-1.1.2-3.el5.centos.i386.rpm,yum-utils-1.1.16-14.el5.centos.1.noarch.rpm这5个rpm,找到先下载到本地,由于我是通过SSH远程连接服务器来操作的,可以用SSH Secure File Transfer Client来传送文件,用SSH Secure Shell Client连接来安装,首先先用rpm -qa|grep yum*指令来查看原先的yum安装文件,直接rpm -e 来删除具体的已安装的yum文件,若遇到依赖问题,直接--nodeps。删干净后,就可以cd到指定的存放Centos5的yum文件目录,直接rpm -ivh yum*,若遇到冲突问题,直接--replacepkgs。安装成功后,就可以通过yum指令来查看了,但是这个时候的源地址配置还是原来的,需要修改。可以参考bocai2015的帖子http://bocai2015.iteye.com/blog/649577

RHEL5 配置YUM源


cd /etc/yum.repos.d/
cp rhel-debuginfo.repo rhel-debuginfo.repo.bak
先删除rhel-debuginfo.repo文件中所有内容,然后添加以下内容:

[base]
name=CentOS-5 - Base
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever5&arch=$basearch&
repo=os
#baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
baseurl=http://ftp.sjtu.edu.cn/centos/5/os/$basearch/
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5

#released updates
[update]
name=CentOS-5 - Updates
#mirrorlist=http://mirrorlist.centos.org/?release=4&arch=$basearch&repo=updates
baseurl=http://ftp.sjtu.edu.cn/centos/5/updates/$basearch/
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5

#packages used/produced in the build but not released
[addons]
name=CentOS-5 - Addons
#mirrorlist=http://mirrorlist.centos.org/?release=4&arch=$basearch&repo=addons

baseurl=http://ftp.sjtu.edu.cn/centos/5/addons/$basearch/
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5

#additional packages that may be useful
[extras]
name=CentOS-5 - Extras
#mirrorlist=http://mirrorlist.centos.org/?release=4&arch=$basearch&repo=extras

baseurl=http://ftp.sjtu.edu.cn/centos/5/extras/$basearch/
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5

#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-5 - Plus
#mirrorlist=http://mirrorlist.centos.org/?release=4&arch=$basearch&repo=centosplus
baseurl=http://ftp.sjtu.edu.cn/centos/5/centosplus/$basearch/
gpgcheck=1
enabled=0
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5

#contrib - packages by Centos Users
[contrib]
name=CentOS-5 - Contrib
#mirrorlist=http://mirrorlist.centos.org/?release=4&arch=$basearch&repo=contrib
baseurl=http://ftp.sjtu.edu.cn/centos/5/contrib/$basearch/
gpgcheck=1
enabled=0
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5

# vi dag.repo
[dag]
name=Dag RPM Repository for RHEL5
baseurl=http://ftp.riken.jp/Linux/dag/redhat/el5/en/$basearch/dag/
enabled=1
gpgcheck=1
gpgkey=http://ftp.riken.jp/Linux/dag/packages/RPM-GPG-KEY.dag.txt


然后导入key
rpm --import http://ftp.sjtu.edu.cn/centos/5/os/i386/RPM-GPG-KEY-CentOS-5

OK,现在可以用yum来install软件了,比如安装gcc编译环境。。。。轻松多了~~~

猜你喜欢

转载自relic6.iteye.com/blog/1074708