温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Red Hat中如何安装yum源

发布时间:2022-02-18 11:12:37 来源:亿速云 阅读:307 作者:小新 栏目:开发技术

这篇文章主要介绍了Red Hat中如何安装yum源,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

yum是shell前端软件包管理器,是Linux下用来下载安装应用的软件。

设置步骤

Red Hat中如何安装yum源

\1. 查询原有的yum

[root@orcl ~]# rpm -qa |grep yumyum-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 yumyum: /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.rpmwarning: 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

遇到的错误

Red Hat中如何安装yum源
Red Hat Linux安装CentOS的yum源Red Hat Linux安装CentOS的yum源

系统位数与安装程序包位数不一致 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

重新下载32位程序包

[root@orcl ~]# rpm -ivh python-iniparse-0.3.1-2.1.el6.noarch.rpmPreparing… ########################################### [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.rpmPreparing… ########################################### [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.rpmPreparing… ########################################### [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=osgpgcheck=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=updatesgpgcheck=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=extrasgpgcheck=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=centosplusgpgcheck=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=contribgpgcheck=1
enabled=0
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-6

清理yum缓存

yum clean all

显示已安程序包及可安程序包

yum list

可以按要求更新程序包或安装

yum update / yum install 包名

感谢你能够认真阅读完这篇文章,希望小编分享的“Red Hat中如何安装yum源”这篇文章对大家有帮助,同时也希望大家多多支持亿速云,关注亿速云行业资讯频道,更多相关知识等着你来学习!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI