yum源配置

14次阅读

共计 2971 个字符,预计需要花费 8 分钟才能阅读完成。

在配置 yum 前首先得说说 rpm,在 redhat 和 centos linux 系统上,rpm 作为软件包管理工具,可以方便的安装、查询、卸载软件包。常见命令如下:

# 安装:rpm -ivh jdk-7u25-linux-x64.rpm

#卸载:rpm -e jdk-7u25-linux-x64.rpm

#升级:rpm -Uvh jdk-7u25-linux-x64.rpm

#查询软件的安装路径:rpm -ql yum-3.4.3-118.el7.noarch

#查询所有安装的包:rpm -qa 

#查询某个文件是哪个 rpm 包产生:rpm -qf /var/lib/yum/yumdb

但是在多个包组成的 rpm 包用 rpm 命令安装时,其依赖包问题是超级繁琐的。

yum 是 redhat 和 centos 的软件包管理工具,安装软件包时可以在网上远程仓库或者本地自动下载所有依赖包,解决了 rpm 的痛点。今天主要学习下远程 yum 源配置。由于 redhat 自带的 yum 源是需要注册收费才能更新下载软件的,如果没有注册就使用,则会报下面的错误:

This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.

所以我们需要把 yum 源修改为 centos 的源。

查看自带 yum:

rpm -qa | grep yum

卸载自带 yum:

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

查看系统版本:

cat /etc/redhat-release

下载安装软件包:

# 下载链接
http://mirrors.163.com/centos/7/os/x86_64/Packages/

#需要下载以下三个 rpm 包:yum-metadata-parser-1.1.4-10.el7.x86_64.rpm  
yum-3.4.3-158.el7.centos.noarch.rpm
yum-plugin-fastestmirror-1.1.31-45.el7.noarch.rpm

执行以下安装命令报错,依赖包的版本不符:

# 执行 yum 安装
rpm -ivh yum*

这里升级 python-urlgrabber 和 rpm 包版本:

# 升级 rpm 包到:rpm-4.11.3-32.el7.x86_64.rpm  
python-urlgrabber-3.10-8.el7.noarch.rpm  

#下载
wget http://mirrors.163.com/centos/7/os/x86_64/Packages/rpm-4.11.3-32.el7.x86_64.rpm
wget http://mirrors.163.com/centos/7/os/x86_64/Packages/python-urlgrabber-3.10-8.el7.noarch.rpm

#升级
rpm -Uvh rpm-4.11.3-32.el7.x86_64.rpm --nodeps
rpm -Uvh python-urlgrabber-3.10-8.el7.noarch.rpm --nodeps

然后安装:

新建配置文件:

vim /etc/yum.repos.d/CentOS-Base.repo

加入以下配置:

#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-$7 - Base - 163.com
#mirrorlist=http://mirrorlist.centos.org/?release=$7&arch=$basearch&repo=os
baseurl=http://mirrors.163.com/centos/7/os/$basearch/
gpgcheck=1
gpgkey=http://mirrors.163.com/centos/RPM-GPG-KEY-CentOS-7

#released updates
[updates]
name=CentOS-$7 - Updates - 163.com
#mirrorlist=http://mirrorlist.centos.org/?release=$7&arch=$basearch&repo=updates
baseurl=http://mirrors.163.com/centos/7/updates/$basearch/
gpgcheck=1
gpgkey=http://mirrors.163.com/centos/RPM-GPG-KEY-CentOS-7

#additional packages that may be useful
[extras]
name=CentOS-$7 - Extras - 163.com
#mirrorlist=http://mirrorlist.centos.org/?release=$7&arch=$basearch&repo=extras
baseurl=http://mirrors.163.com/centos/7/extras/$basearch/
gpgcheck=1
gpgkey=http://mirrors.163.com/centos/RPM-GPG-KEY-CentOS-7

#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$7 - Plus - 163.com
baseurl=http://mirrors.163.com/centos/7/centosplus/$basearch/
gpgcheck=1
enabled=0
gpgkey=http://mirrors.163.com/centos/RPM-GPG-KEY-CentOS-7

然后清理缓存:

yum clean all

生成缓存:

yum makecache

测试源:

yum update -y --skip-broken

可以看到已经可以通过 yum 安装相关软件包更新。




本公众号 免费 提供 csdn 下载服务,海量 IT 学习资源,如果你准备入 IT 坑,励志成为优秀的程序猿,那么这些资源很适合你,包括但不限于 java、go、python、springcloud、elk、嵌入式、大数据、面试资料、前端 等资源。同时我们组建了一个技术交流群,里面有很多大佬,会不定时分享技术文章,如果你想来一起学习提高,可以公众号后台回复【2】,免费邀请加技术交流群互相学习提高,会不定期分享编程 IT 相关资源。


扫码关注,精彩内容第一时间推给你

正文完
 0