Red Hat Linux安装CentOS的yum源
Posted Linux无限探索
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Red Hat Linux安装CentOS的yum源相关的知识,希望对你有一定的参考价值。
RedHat凭借其卓越的稳定性和强大的服务占领着企业linux大部分市场,系统本身免费,但是其服务却是收费的,例如其软件包管理服务yum。不想出钱那就自己配置yum源就好了,因为yum在线更新是收费的,未注册则不能使用,这个是要填序列号激活的,解决办法是更换为CentOS的yum。 |
1. 查询原有的yum
[root@orcl ~]# rpm -qa |grep yum yum-plugin-fastestmirror-1.1.30-37.el6.noarch yum-metadata-parser-1.1.2-16.el6.i686 yum-utils-1.1.30-37.el6.noarch yum-plugin-security-1.1.30-37.el6.noarch yum-3.2.29-75.el6.centos.noarch yum-rhn-plugin-0.9.1-43.el6.noarch
2. 删除原有的yum
[root@orcl ~]# rpm -aq|grep yum|xargs rpm -e –-nodeps [root@orcl ~]# rpm -qa |grep yum [root@orcl ~]#
3. 查询原有yum配置
[root@orcl ~]# whereis yum yum: /etc/yum [root@orcl ~]# rm -fr /etc/yum
4. 下载需要的安装包
http://mirrors.163.com/centos/6.8/os/i386/Packages/
系统为32的,所以我选择i386。64的自行查找x86_64。
可以使用
wget http://mirrors.163.com/centos/6.8/os/i386/Packages/yum-3.2.29-73.el6.centos.noarch.rpm
下载
yum-3.2.29-73.el6.centos.noarch.rpm yum-plugin-fastestmirror-1.1.30-37.el6.noarch.rpm yum-metadata-parser-1.1.2-16.el6.i686.rpm Python-iniparse-0.3.1-2.1.el6.noarch.rpm
5. 安装python
[root@orcl ~]# rpm -ivh python-iniparse-….noarch.rpm warning: python-iniparse-0.4-9.el7.noarch.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY error: Failed dependencies: python(abi) = 2.7 is needed by python-iniparse-0.4-9.el7.noarch
当前安装版本与服务器不兼容,退后一个版本再试。
查看当前发行版本号
cat /etc/issue
系统位数与安装程序包位数不一致 file /bin/ls
error: Failed dependencies: libc.so.6()(64bit) is needed by yum-metadata-parser-1.1.2-16.el6.x86_64 libc.so.6(GLIBC_2.2.5)(64bit) is needed by yum-metadata-parser-1.1.2-16.el6.x86_64 libglib-2.0.so.0()(64bit) is needed by yum-metadata-parser-1.1.2-16.el6.x86_64 libpthread.so.0()(64bit) is needed by yum-metadata-parser-1.1.2-16.el6.x86_64 libpython2.6.so.1.0()(64bit) is needed by yum-metadata-parser-1.1.2-16.el6.x86_64 libsqlite3.so.0()(64bit) is needed by yum-metadata-parser-1.1.2-16.el6.x86_64 libxml2.so.2()(64bit) is needed by yum-metadata-parser-1.1.2-16.el6.x86_64 libxml2.so.2(LIBXML2_2.4.30)(64bit) is needed by yum-metadata-parser-1.1.2-16.el6.x86_64
[root@orcl ~]# rpm -ivh python-iniparse-0.3.1-2.1.el6.noarch.rpm Preparing… ########################################### [100%] package python-iniparse-0.3.1-2.1.el6.noarch is already installed [root@orcl ~]# rpm -ivh yum-metadata-parser-1.1.2-16.el6.i686.rpm Preparing… ########################################### [100%] 1:yum-metadata-parser ########################################### [100%] [root@orcl ~]# rpm -ivh yum-3.2.29-73.el6.centos.noarch.rpm yum-plugin-fastestmirror-1.1.30-37.el6.noarch.rpm Preparing… ########################################### [100%] 1:yum-plugin-fastestmirro########################################### [ 50%] 2:yum ########################################### [100%] [root@orcl ~]#
注意最后两个包必需同时安装,否则会相互依赖
更改yum源(使用网易的CentOS镜像源)
[root@localhost yum]# cd /etc/yum.repos.d/ [root@localhost yum.repos.d]# rm -rf * [root@localhost yum.repos.d]# wget http://mirrors.163.com/.help/CentOS6-Base-163.repo [root@localhost yum.repos.d]# vi CentOS6-Base-163.repo
将所有 $releasever 修改为具体的版本号,我这里写的是6.8,这个自己打开(http://mirrors.163.com/centos)找一下就可以。
# CentOS-Base.repo # # The mirror system uses the connecting IP address of the client and the # update status of each mirror to pick mirrors that are updated to and # geographically close to the client. You should use this for CentOS updates # unless you are manually picking other mirrors. # # If the mirrorlist= does not work for you, as a fall back you can try the # remarked out baseurl= line instead. # # [base] name=CentOS-$releasever - Base - 163.com baseurl=http://mirrors.163.com/centos/6.8/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.8/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.8/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.8/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.8/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
清理yum缓存
yum clean all
显示已安程序包及可安程序包
yum list
可以按要求更新程序包或安装
yum update / yum install 包名
到此结束了,亲们
本文来自博客园,作者:linux_pro,转载请注明原文链接:https://www.cnblogs.com/linuxpro/p/17406058.html
Red Hat Enterprise Linux(RHEL)中yum的repo文件详解
Yum(全称为 Yellow dog Updater, Modified)是一个在Fedora和RedHat以及CentOS中的Shell前端软件包管理器。基于RPM包管理,能够从指定的服务器自动下载RPM包并且安装,可以自动处理依赖性关系,并且一次安装所有依赖的软件包,无须繁琐地一次次下载、安装。
使用yum help查看所有支持的命令:
首先查看/etc/yum.conf的内容:
下面逐行介绍这个配置文件里每一行的作用。
cachedir=/var/cache/yum/$basearch/$releasever
指定yum缓存的目录,yum在此存储下载的rpm包和数据库。
在我的server上这个文件夹里的内容如下:
keepcache=0:设置 keepcache=1,yum 在成功安装软件包之后保留缓存的头文件 (headers) 和软件包。默认值为 keepcache=0 不保存
debuglevel=2:调试级别,2代表只记录安装和删除记录
logfile=/var/log/yum.log
gpgcheck=1:有1和0两个选择,分别代表是否是否进行gpg校验,如果没有这一项,默认是检查的。什么是GPG检查?GPG是加密和数字签名的免费工具,大多用于加密信息的传递。除了仅用密码加密外,GPG最大的不同是提供了“公钥/私钥”对。利用一方的“公钥”别人加密信息不再需要告诉密码,随时随地都能发送加密信息。而这种加密是单向的,只有一方的“私钥”能解开加密。数字签名又是另一大使用方向。通过签名认证,别人能确保发布的消息来自一方,而且没有经过修改。
进入目录yum.repos.d,能发现很多.repo文件:
随便打开一个:
[virtualbox]
name=Oracle Linux / RHEL / CentOS-$releasever / $basearch - VirtualBox
baseurl=http://download.virtualbox.org/virtualbox/rpm/el/$releasever/$basearch
enabled=1
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://www.virtualbox.org/download/oracle_vbox.asc
name:
是对repository的描述,支持像$releasever $basearch这样的变量;
baseurl=http://download.virtualbox.org/virtualbox/rpm/el/$releasever/$basearch
baseurl是服务器设置中最重要的部分,指向了这个repo文件对应的软件安装包的地址。
有了这些repo文件的定义,执行yum install后面跟上包的名字,就能自动从baseurl下载安装包并自动安装了。
要获取更多Jerry的原创文章,请关注公众号"汪子熙":
以上是关于Red Hat Linux安装CentOS的yum源的主要内容,如果未能解决你的问题,请参考以下文章
基于RHEL(centos/red hat)的8个YUM/DNF第三方库
red hat 6.5 红帽企业Linux.6.5 yum This system is not registered to Red Hat Subscription Management. You
Red Hat Enterprise Linux(RHEL)中yum的repo文件详解