使用CentOS 6.9 的Yum网络源

1、查询安装的rpm包


1

rpm -qa|grep yum


2. 删除自带的 rpm包


1

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


因为一些包之间可能会有依赖关系,所以我们需要加上参数 --nodeps 无视依赖关系。

3. 下载rpm包

rpm包下载地址http://mirrors.163.com/centos/6.9/os/i386/

在这个网站里,你可以自己选择需要下载的文件,进入形如5/或者6/的文件下载,其他的无法下载。7.0版本以后不支持i386,只支持x86_64。


1

2

3

4

5

6

7

8

9

10

11

12

13


# rpm -qa|grep yum

yum-3.2.29-81.el6.centos.noarch.rpm

yum-plugin-fastestmirror-1.1.30-40.el6.noarch.rpm

yum-metadata-parser-1.1.2-16.el6.i686.rpm

yum-plugin-security-1.1.30-40.el6.noarch.rpm

yum-utils-1.1.30-40.el6.noarch.rpm

# mkdir yum

# cd yum/

wget http://mirrors.163.com/centos/6.9/os/i386/Packages/yum-3.2.29-81.el6.centos.noarch.rpm

wget http://mirrors.163.com/centos/6.9/os/i386/Packages/yum-plugin-fastestmirror-1.1.30-40.el6.noarch.rpm

wget http://mirrors.163.com/centos/6.9/os/i386/Packages/yum-metadata-parser-1.1.2-16.el6.x86_64.rpm

wget http://mirrors.163.com/centos/6.9/os/i386/Packages/yum-plugin-security-1.1.30-40.el6.noarch.rpm

wget http://mirrors.163.com/centos/6.9/os/i386/Packages/yum-utils-1.1.30-40.el6.noarch.rpm

4、安装RPM包


1

2


# rpm -ivh *.rpm

# rpm -ivh yum*.rpm


5、删除原来的yum源


1

2


# cd /etc/yum.repos.d

# rm -f *.repo


6、下载163的yum源


1

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


7、编辑yum源repo文件

把文件里面的$releasever全部替换为版本号: 6.9


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36


vim CentOS6-Base-163.repo

name=CentOS-$releasever - Base - 163.com

baseurl=http://mirrors.163.com/centos/6.9/os/$basearch/

#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os

gpgcheck=1

gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-6

#released updates

[updates]

name=CentOS-$releasever - Updates - 163.com

baseurl=http://mirrors.163.com/centos/6.9/updates/$basearch/

#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates

gpgcheck=1

gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-6

#additional packages that may be useful

[extras]

name=CentOS-$releasever - Extras - 163.com

baseurl=http://mirrors.163.com/centos/6.9/extras/$basearch/

#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras

gpgcheck=1

gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-6

#additional packages that extend functionality of existing packages

[centosplus]

name=CentOS-$releasever - Plus - 163.com

baseurl=http://mirrors.163.com/centos/6.9/centosplus/$basearch/

#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus

gpgcheck=1

enabled=0

gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-6

#contrib - packages by Centos Users

[contrib]

name=CentOS-$releasever - Contrib - 163.com

baseurl=http://mirrors.163.com/centos/6.9/contrib/$basearch/

#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=contrib

gpgcheck=1

enabled=0

gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-6


8、清理并重建缓存


1

2


yum clean all

yum makecache fast


9、更换完毕。

原文地址:http://blog.51cto.com/jiangjieshi/2117311

时间: 2024-10-05 23:25:15

使用CentOS 6.9 的Yum网络源的相关文章

Redhat 7.0安装CentOS 7 的Yum 网络源

redhat 的更新包只对注册的用户生效,所以我们自己手动更改成CentOS 的更新包,CentOS几乎和redhat是一样的,所以无需担心软件包是否可安装,安装之后是否有问题,另外CentOS公司去年已经被Redhat 收购了,不说费话了,我们还是来操作吧! 1.首先查看redhat 7.0系统本身所安装的那些yum 软件包: [[email protected] ~]# rpm -qa | grep yumyum-utils-1.1.31-24.el7.noarch yum-langpack

Redhat 7使用CentOS 7的Yum网络源

由于redhat 的更新包只对注册的用户生效,所以需要自己手动更改成CentOS 的更新包,CentOS几乎和redhat是一样的,所以无需担心软件包是否可安装,安装之后是否有问题,另外CentOS公司去年已经被Redhat 收购了,下面是安装步骤. 1.首先查看redhat 7.0系统本身所安装的那些yum 软件包: [[email protected] ~]# rpm -qa | grep yum yum-utils-1.1.31-24.el7.noarch yum-langpacks-0.

centos 安装yum网络源

安装虚拟机啊,使用公司给定的centos 6.0的iso镜像,该镜像经过裁剪,而且工作中要使用mercurial(hg)版本控制工具,所以需要yum install mercurial. 刚开始安装完该系统,yum install mercurial提示不能解析域名,应该是网络连接不上,选择桥接方式,然后在 /etc/sysconfig/network-scripts/ifcfg-eth0 该目录下配置网络,添加 BOOTPROTO=static IPADDR=192.168.30.102 NE

redhat6.7 yum网络源配置

RedHat自带的yum源需要当前系统注册了RHN才可以使用,如果没有注册,当使用yum时,会提示需要注册RHN 如果没有注册RHN,则意味着我们不能使用RedHat自带的yum源.这个时候,我们可以使用CentOS系统的yum源,这里以配置网易163yum源为例. 1.首先卸载RedHat资源的yum程序 [[email protected] yum.repos.d]# rpm -qa|grep yum|xargs rpm -e --nodeps [[email protected] yum.

Redhat使用CentOS的Yum 网络源

Redhat 的更新包只对注册的用户生效,所以我们自己手动更改成CentOS 的更新包,CentOS几乎和redhat是一样的. 1.首先查看redhat 7.0系统本身所安装的那些yum 软件包:[[email protected] ~]# rpm -qa | grep yum yum-utils-1.1.31-24.el7.noarchyum-langpacks-0.4.2-3.el7.noarchyum-metadata-parser-1.1.4-10.el7.x86_64yum-rhn-

YUM网络源安装

YUM,Yellowdog Updater Modified基于RPM包构建的软件更新机制可以自动解决依赖关系所有软件包由集中的YUM软件仓库提供1.实验环境--------------------------[[email protected] ~]# lsb_release -a //查看当前系统版本详细信息LSB Version: :base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd6

解决centos 6.6 更换yum 163源报错

一般更换163yum源,都是如下操作:mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.oldcd /etc/yum.repos.d/  wget wget spacer.gifhttp://mirrors.163.com/.help/CentOS6-Base-163.repomv CentOS6-Base-163.repo CentOS-Base.repo  yum clean all & yum ma

centos 6.6 更换yum 163源报错

一般百度更换163yum源,都是如下操作:mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.oldcd /etc/yum.repos.d/  wget wget http://mirrors.163.com/.help/CentOS6-Base-163.repomv CentOS6-Base-163.repo CentOS-Base.repo  yum clean all & yum makecache

为CentOS 6.6 配置yum本地源

公司的虚拟机,需要安装一些文件,用rpm包一个个安装太麻烦了,想用yum,但是又不能联网. 所以只好配置一个本地的yum源了. 将光盘mount到本地 mount /dev/cdrom  /media/cdrom 修改yum配置文件 cd /etc/yum.repos.d/ 在下面可以看到5个文件 CentOS-Base.repose CentOS-Debuginfo.repo CentOS-fasttrack.repo CentOS-Media.repo CentOS-Vault.repo 这