RHEL6换CentOS6的yum源步骤大全(附命令代码)

第一步:删除默认的yum源。

rpm -aq | grep yum|xargs rpm -e --nodeps

第二步:下载最新的yum安装包(这里以rhel6.4为例,其他版本请查找对应版本的安装包即可)。

wget http://vault.centos.org/6.4/os/x86_64/Packages/python-iniparse-0.3.1-2.1.el6.noarch.rpm
wget http://vault.centos.org/6.4/os/x86_64/Packages/yum-metadata-parser-1.1.2-16.el6.x86_64.rpm
wget http://vault.centos.org/6.4/os/x86_64/Packages/yum-3.2.29-40.el6.centos.noarch.rpm
wget http://vault.centos.org/6.4/os/x86_64/Packages/yum-plugin-fastestmirror-1.1.30-14.el6.noarch.rpm

第三步:安装yum相关软件。

rpm -ivh python-iniparse-0.3.1-2.1.el6.noarch.rpm
rpm -ivh yum-metadata-parser-1.1.2-16.el6.x86_64.rpm
rpm -ivh yum-3.2.29-40.el6.centos.noarch.rpm yum-plugin-fastestmirror-1.1.30-14.el6.noarch.rpm

第四步:更改yum源,身在大陆就使用网易的镜像源,可以在这里http://mirrors.163.com/.help/centos.html 下载CentOS-Base.repo文件。

wget  http://mirrors.163.com/.help/CentOS6-Base-163.repo

修改把文件里面的$releasever全部替换为版本号,即6。

sed -i ‘s/$releasever/6/‘ /etc/yum.repos.d/CentOS6-Base-163.repo

第五步:清理yum缓存。

yum clean all
yum makecache

---------------------------------完成-------------------------

时间: 2024-11-03 22:11:18

RHEL6换CentOS6的yum源步骤大全(附命令代码)的相关文章

RHEL6.6搭建CentOS6.6 yum源

现需要在RHEL6.6上安装zabbix2.4,通过虚拟机桥接互联网yum方式安装,但yum –y installnet-snmp zabbix zabbix-server的时候报如下错误,导致安装不上: 这个错误是由于没有注册引起的,怎么办呢?网上也查了一些资料,按照网上的资料,现将为自己的环境整理搭建了一下CentOS6.6 yum源! 把原来的yum源卸载掉 # rpm -qa | grep yum | xargs rpm -e –nodeps 添加并安装下载的yum的rpm包 # rpm

CentOS6的yum源

32位的RHEL6如何使用CentOS6的yum源 分类: Linux基础学习2012-12-03 21:56 325人阅读 评论(0) 收藏 举报 32位的RHEL6如何使用CentOS6的yum源 (2012-01-16 19:29) http://blog.chinaunix.net/uid-24501667-id-3059325.html (注意:)安装文件时参考网址路径对不对. 32位的RHEL6如何使用CentOS6的yum源 一 .卸载自身yum#rpm -aq|grep yum|

RHEL6使用CentOS的yum源

1.卸载RHEL6自带的yum源 rpm -qa | grep yum |xargs rpm -e --nodeps 2.下载对应的安装包 # wget  http://mirror.centos.org/centos-6/6.5/os/x86_64/Packages/python-iniparse-0.3.1-2.1.el6.noarch.rpm  # wget  http://mirror.centos.org/centos-6/6.5/os/x86_64/Packages/yum-3.2.

RHEL6.5服务器本地yum源配置

RHEL6.5服务器本地yum源配置 1.确保安装所需软件包 yum-3.2.29-40.el6.noarch createrepo-0.9.9-17.el6.noarch yum配置文件为/etc/yum.conf 2.挂载本地磁盘到/mnt/cdrom目录下 [[email protected] ~]#mount /dev/cdrom /mnt/cdrom 3.配置本地yum. 源配置文件以独立file.repo格式存放于/etc/yum.repos.d/目录中,如下配置本地yum源 [[e

rhel5.x&rhel6.x更换CentOS yum源

最近接触的系统多数为rhel,rhel自带的yum又不能联网安装,于是写了个一键安装的脚本,支持rhel5.x&rhel6.x,选用的是网易的源. #!/bin/sh #author by thundermeng . /etc/init.d/functions bit=`getconf LONG_BIT` release=`sed -r -n 's/(.*) ([[:digit:]])\.([[:digit:]]) (.*)/\2/p' /etc/redhat-release` if [ $UI

RedHat Enterprise Linux 6.4 使用 CentOS6 的yum源问题

#yum install pam-devel #This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.Setting up Install ProcessNothing to do 经过一个上午的研究发现,其实如果使用redhat的yum源需注册付费,费时费力,只在自己电脑上搭了个redhat系统而已,没必要为此大费周章.通过度娘

CentOS6更换yum源

1.首先备份原来的cent os官方yum源 cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak 2.获取阿里的yum源覆盖本地官方yum源 wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo 3.清理yum缓存,并生成新的缓存 yum clean all yum makecac

centos6使用yum源安装gitlab-ce私有环境

使用清华镜像源配置yum源: vim /etc/yum.repos.d/gitlab.repo [Gitlab-CE] name=Gitlab CE baseurl=https://mirror.tuna.tsinghua.edu.cn/gitlab-ce/yum/el6/ enabled=1 gpgcheck=0 2. yum安装 yum install gitlab-ce -y 3. gitlab配置(/opt/gitlab/gitlab.rb) external_url ' #配置服务器I

RedHat6使用centos6的yum源

更换源 cd /etc/yum.repos.d/ wget http://mirrors.163.com/.help/CentOS6-Base-163.repo vi CentOS6-Base-163.repo 编辑文件,把文件里面的$releasever全部替换为版本号,即6.5 最后保存!或者直接把下面的内存拷贝到CentOS6-Base-163.repo文件中即可(已经修改好) # CentOS-Base.repo # # The mirror system uses the connec