配置环境永远是最重要的第一步。
在我又开始折腾虚拟机的时候,yum的问题又来了。
我安装的RHEL系统,使用yum命令的时候它提示:
Loaded plugins: rhnplugin, security
This system is not registered with RHN.
RHN support will be disabled.
Setting up Install Process
No package httpd available.
Nothing to do
This system is not registered with RHN.
RHN support will be disabled.
Setting up Install Process
No package httpd available.
Nothing to do
查阅资料是redhat自带的yum命令的问题,卸载掉系统自带的yum:
rpm -qa | grep yum | xarg rpm -e
然后安装centos的yum包,需要以下三个rpm文件:
1. http://mirrors.ustc.edu.cn/centos/5/os/i386/CentOS/yum-3.2.22-39.el5.centos.noarch.rpm
2 .http://mirrors.ustc.edu.cn/centos/5/os/i386/CentOS/yum-fastestmirror-1.1.16-21.el5.centos.noarch.rpm
3. http://mirrors.ustc.edu.cn/centos/5/os/i386/CentOS/yum-metadata-parser-1.1.2-3.el5.centos.i386.rpm
使用wget下载完成之后,rpm -ivh yum-*.rpm装好yum
然后下载repo文件到/etc/yum.repos.d/文件夹:
http://docs.linuxtone.org/soft/lemp/CentOS-Base.repo
最后使用yum命令生成缓存:
yum makecache
然后就可以使用yum命令进行任何安装了。
ps:
中国科学技术大学的镜像点是个好东西:http://mirrors.ustc.edu.cn/
参考:http://blog.csdn.net/xiangshimoni/article/details/6891295