码迷,mamicode.com
首页 > 其他好文 > 详细

red halt 7.3使用Cent-os7 yum 源

时间:2017-04-12 23:43:51      阅读:1166      评论:0      收藏:0      [点我收藏+]

标签:halt   ror   blog   image   package   eps   yum   检查   centos   

困惑:在使用red halt学习时,未注册的用户,有些软件是无法通过yum网络源和本地光盘下载,此时使用Centos的yum源就显得很方便,因为红帽收购了Centos 所以软件的兼容性基本不会有什么问题



1.检查是否安装yum包

查看RHEL是否安装了yum,若是安装了,那么又有哪些yum包:

[root@syq yum.repos.d]# rpm -qa |grep yum
yum-3.4.3-118.el7.noarch
yum-utils-1.1.31-24.el7.noarch
yum-rhn-plugin-2.0.1-4.el7.noarch
PackageKit-yum-0.8.9-11.el7.x86_64
yum-langpacks-0.4.2-3.el7.noarch
yum-metadata-parser-1.1.4-10.el7.x86_64

2 删除redhat自带的yum包

卸载上面显示的所有yum包:

[root@localhost ~]# rpm -qa|grep yum|xargs rpm -e --nodeps(不检查依赖,直接删除rpm包)

再用

[root@localhost ~]# rpm -qa |grep yum

[root@localhost ~]# 

查看,无信息显示表示已经卸载完成。

3.下载新的yum包。使用Centos7的yum包

wget https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/yum-metadata-parser-1.1.4-10.el7.x86_64.rpm

wget https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/yum-3.4.3-150.el7.centos.noarch.rpm

wget https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/yum-plugin-fastestmirror-1.1.31-40.el7.noarch.rpm

wget https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/yum-utils-1.1.31-40.el7.noarch.rpm

wget https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/python-urlgrabber-3.10-8.el7.noarch.rpm 

 需要的话卸载之前的python-urlgrabber( rpm -qa|grep python-urlgrabber|xargs rpm -e --nodeps )

整理后(为了方面大家直接复制下来粘贴运行,而不用复制5次粘贴5次)

wget https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/yum-metadata-parser-1.1.4-10.el7.x86_64.rpm;wget https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/yum-3.4.3-150.el7.centos.noarch.rpm;wget https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/yum-plugin-fastestmirror-1.1.31-40.el7.noarch.rpm;wget https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/yum-utils-1.1.31-40.el7.noarch.rpm;wget https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/python-urlgrabber-3.10-8.el7.noarch.rpm  

 

下载后

技术分享
安装yum软件包

注意:单个的安装包可能会依赖其它包(例如yum和yum-fastestmirror会相互依赖),所以我们可以把所有这些包放在一起,用一行命令将它们同时安装即可:

rpm -ivh python-urlgrabber-3.10-8.el7.noarch.rpm;rpm -ivh yum-metadata-parser-1.1.4-10.el7.x86_64.rpm yum-3.4.3-150.el7.centos.noarch.rpm yum-plugin-fastestmirror-1.1.31-40.el7.noarch.rpm(方便复制)

安装后

技术分享4.更换yum源。使用阿里云的

 第一步:备份你的原镜像文件,以免出错后可以恢复。

mv /etc/yum.repos.d/redhat.repo /etc/yum.repos.d/redhat.repo.bak
第二步:下载新的CentOS-Base.repo 到/etc/yum.repos.d/

CentOS 7
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
技术分享
第三步:修改CentOS-Base.repo文件中的“$releasever”全部替换为”7”

技术分享把文件中所有“$releasever”全部替换为”7”,

在vim 文件后 打出冒号

命令为:g/$releasever/s//7/g,替换后如图

技术分享

 

 

第四步:运行yum makecache生成缓存
yum clean all
yum makecache

技术分享
yum update(下载量很大 不介意使用)
yum list (成功图片)
技术分享


red halt 7.3使用Cent-os7 yum 源

标签:halt   ror   blog   image   package   eps   yum   检查   centos   

原文地址:http://www.cnblogs.com/VastTry/p/6701517.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!