yun工具的使用
文章目录
- yun工具的使用
- 1. rpm的弊端
- 2. yum的优劣势
- 3. 什么是yum及其作用
- 4. 挂载光盘
- 5. yum的原理
- 6. yum的元数据
- 7. yum的配置文件
- 8. yum仓库管理
- 8.1 yum本地仓库
- 8.2 yum网络仓库
- 8.3 软件官方仓库
- 8.4 redhat7使用centos7的yum源
- 9. yum管理软件
- 9.1 yum命令语法:
- 9.2 常用的options:
- 9.3 常用的command:
- 9.4 具体实例
- 9.4.1 搜索软件包
- 9.4.2 安装软件包
- 9.4.3 重装软件包
- 9.4.4 更新软件包
- 9.4.5 删除软件包
- 9.4.6 与仓库相关的命令
- 9.4.7 与缓存相关的命令
- 9.4.8 与包组相关的命令
- 9.4.9 与历史记录相关的命令
- 9.4.10 YUM签名检查机制
- 作业:
1. rpm的弊端
前面我们讲了下rpm,那么rpm有什么弊端呢?其弊端是显而易见的,当用rpm安装软件时,若遇到有依赖关系的软件,必须先安装依赖的软件才能继续安装我们要安装的软件,当依赖关系很复杂的情况下,这种安装方式就很让人头疼,所以我们需要另一种安装方式来解决这个问题,今天我们要来学习的就是这样一个工具–yum
2. yum的优劣势
yum有什么优势呢?yum最大的优势就是能够解决rpm的依赖问题,yum能够自动解决软件安装时的依赖关系。
当然了,有优势就有劣势,人无完人嘛,软件也是一样的,yum的缺陷就是如果在未完成安装的情况下强行中止安装过程,下次再安装时将无法解决依赖关系,Fedora22+、redhat7和centos7等可以通过手动安装dnf工具来解决此问题。
dnf是redhat7上用来代替yum的一个工具,其存在的意义就是处理yum的缺陷,但其用法与yum是完全一样的,甚至连选项都是一样的,你可以理解为dnf就是yum,只是换了个名字而已。所以说只要学会了yum就自然会dnf,大家不用担心学了yum又要去学dnf之类的问题
3. 什么是yum及其作用
那么什么是yum呢?yum是yellowdog update manager的简称,它能够实现rpm管理的所有操作,并能够自动解决各rpm包之间的依赖关系。yum是rpm的前端工具,是基于rpm来实现软件的管理的一个工具。
你不能用yum去管理windows的exe程序包,也不能用yum去管理ubuntu的deb程序包,只能用yum来管理redhat系列的rpm包
4. 挂载光盘
- 插入光盘
- 执行以下命令
[root@localhost ~]# mount /dev/cdrom /mnt
mount: /dev/sr0 is write-protected, mounting read-only
[root@localhost ~]# ls /mnt/
addons EULA GPL isolinux media.repo repodata RPM-GPG-KEY-redhat-release
EFI extra_files.json images LiveOS Packages RPM-GPG-KEY-redhat-beta TRANS.TBL
[root@localhost ~]#
5. yum的原理
yum的工作需要两部分来合作,一部分是yum服务器,另一部分就是client的yum工具。下面分别介绍两部分工作原理。
yum服务器端工作原理
所有要发行的rpm包都放在yum服务器上以提供别人来下载,rpm包根据kernel的版本号,cpu的版本号分别编译发布。yum服务器只要提供简单的下载就可以了,ftp或者http的形式都可以。yum服务器有一个最重要的环节就是整理出每个rpm包的基本信息,包括rpm包对应的版本号、conf文件、binary信息,以及很关键的依赖信息。在yum服务器上提供了createrepo工具,用于把rpm包的基本概要信息做成一张“清单”,这张“清单”就是描述每个rpm包的spec文件中信息。
client端工作原理
client每次调用yum install或者search的时候,都会去解析/etc/yum.repos.d下面所有以.repo结尾的配置文件,这些配置文件指定了yum服务器的地址。yum会定期去更新yum服务器上的rpm包清单,然后把清单下载保存到yum客户端自己的cache里面,根据/etc/yum.conf里配置(默认是/var/cache/yum下面),每次调用yum装包的时候都会去这个cache目录下去找清单,根据清单里的rpm包描述从而来确定安装包的名字、版本号、所需要的依赖包等,然后再去yum服务器下载rpm安装。(前提是不存在rpm包的cache)
6. yum的元数据
- 存放位置(repodata目录)
- 包含的文件及其对应的功能
- primary.xml.gz
- 当前仓库所有rpm包的列表;
- 依赖关系;
- 每个rpm包安装生成的文件列表
- filelists.xml.gz
- 当前仓库所有rpm包的所有文件列表
- other.xml.gz
- 额外信息,rpm包的修改日志
- repomd.xml
- 记录的是primary.xml.gz、filelists.xml.gz、other.xml.gz这三个文件的时间戳和校验和
- comps*.xml
- rpm包分组信息
7. yum的配置文件
- 配置文件有哪些:
- /etc/yum.conf 作用:为所有仓库提供公共配置
- /etc/yum.repos.d/*.repo 作用:为仓库的指向提供配置
- yum的repo配置文件中可用的变量:
- $releaseversion:当前OS的发行版的主版本号
- $arch:平台类型
- $basearch:基础平台
为yum定义repo文件:
[Repo_Name]:仓库名称
name:描述信息
baseurl:仓库的具体路径,接受以下三种类型
ftp://
http://
file:///
enabled:可选值{1|0},1为启用此仓库,0为禁用此仓库
gpgcheck:可选值{1|0},1为检查软件包来源合法性,0为不检查来源
如果gpgcheck设为1,则必须用gpgkey定义密钥文件的具体路径
gpgkey=/PATH/TO/KEY
vim /etc/yum.conf
cachedir=/var/cache/yum/$basearch/$releasever //缓存目录
keepcache=0 //缓存软件包, 1启动 0 关闭
debuglevel=2 //调试级别
logfile=/var/log/yum.log //日志记录位置
exactarch=1 //检查平台是否兼容
obsoletes=1 //检查包是否废弃
gpgcheck=1 //检查来源是否合法,需要有制作者的公钥信息
plugins=1 //是否启用插件
tolerant={1|0} //容错功能,1为开启,0为关闭,当设为0时,如果用yum安装多个软件包且其中某个软件包已经安装过就会报错;当设为1时,当要安装的软件已经安装时自动忽略
installonly_limit=5
bugtracker_url
# metadata_expire=90m //每小时手动检查元数据
# in /etc/yum.repos.d //包含repos.d目录
8. yum仓库管理
8.1 yum本地仓库
- 挂载光盘参照本章第4部分内容
- 复制光盘内容到yum服务器
[root@localhost ~]# mkdir /opt/myrepo
[root@localhost ~]# cp -r /mnt/* /opt/myrepo/
[root@localhost ~]# ls /opt/myrepo/
addons EULA GPL isolinux media.repo repodata RPM-GPG-KEY-redhat-release
EFI extra_files.json images LiveOS Packages RPM-GPG-KEY-redhat-beta TRANS.TBL
- 配置repo文件
[root@localhost ~]# ls /etc/yum.repos.d/
redhat.repo
[root@localhost ~]# vim /etc/yum.repos.d/myrepo.repo
[root@localhost ~]# cat /etc/yum.repos.d/myrepo.repo
[myrepo]
name=myrepo
baseurl=file:///opt/myrepo
gpgcheck=0
enabled=1
[root@localhost ~]#
- 清空yum本地缓存
[root@localhost ~]# yum clean all
Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
Cleaning repos: myrepo
Cleaning up everything
Maybe you want: rm -rf /var/cache/yum, to also free up space taken by orphaned data from disabled or removed repos
- 检验yum本地仓库
[root@localhost ~]# yum list all
......
plymouth-core-libs.i686 0.8.9-0.28.20140113.el7 myrepo
plymouth-graphics-libs.i686 0.8.9-0.28.20140113.el7 myrepo
policycoreutils-devel.i686 2.5-17.1.el7 myrepo
policycoreutils-devel.x86_64 2.5-17.1.el7 myrepo
policycoreutils-gui.x86_64 2.5-17.1.el7 myrepo
policycoreutils-newrole.x86_64 2.5-17.1.el7 myrepo
policycoreutils-sandbox.x86_64 2.5-17.1.el7 myrepo
polkit.i686 0.112-12.el7_3 myrepo
polkit-devel.i686 0.112-12.el7_3 myrepo
polkit-devel.x86_64 0.112-12.el7_3 myrepo
polkit-docs.noarch 0.112-12.el7_3 myrepo
polkit-kde.x86_64 0.99.1-4.20130311git.el7 myrepo
polkit-qt.i686 0.103.0-10.el7_0 myrepo
polkit-qt.x86_64 0.103.0-10.el7_0 myrepo
poppler.i686 0.26.5-16.el7 myrepo
poppler-glib.i686 0.26.5-16.el7 myrepo
poppler-qt.i686 0.26.5-16.el7 myrepo
poppler-qt.x86_64 0.26.5-16.el7 myrepo
popt.i686 1.13-16.el7 myrepo
popt-devel.i686 1.13-16.el7 myrepo
......
8.2 yum网络仓库
- 官方网络yum仓库(国外)
- 阿里云yum仓库
- 163yum仓库
- xx大学yum仓库
- epel源
// Base/Extras/Updates: 默认国外官方源
[root@localhost ~]# curl -o /etc/yum.repos.d/CentOS-Base.repo \
http://mirrors.aliyun.com/repo/Centos-7.repo
//国外epel源
[root@localhost ~]# yum -y install epel-release //只有先安装了网络源才能找得到
//阿里云epel源
[root@localhost ~]# curl -o /etc/yum.repos.d/epel.repo \
http://mirrors.aliyun.com/repo/epel-7.repo
[root@localhost ~]# cd /etc/yum.repos.d/
[root@localhost yum.repos.d]# ls
[root@localhost yum.repos.d]# wget http://mirrors.aliyun.com/repo/Centos-7.repo
--2019-09-28 15:40:11-- http://mirrors.aliyun.com/repo/Centos-7.repo
正在解析主机 mirrors.aliyun.com (mirrors.aliyun.com)... 222.192.186.22, 222.192.186.23, 222.192.186.37, ...
正在连接 mirrors.aliyun.com (mirrors.aliyun.com)|222.192.186.22|:80... 已连接。
已发出 HTTP 请求,正在等待回应... 200 OK
长度:2523 (2.5K) [application/octet-stream]
正在保存至: “Centos-7.repo”
100%[==============================================================================================================>] 2,523 --.-K/s 用时 0s
2019-09-28 15:40:11 (467 MB/s) - 已保存 “Centos-7.repo” [2523/2523])
[root@localhost yum.repos.d]# ls
Centos-7.repo
[root@localhost yum.repos.d]# sed -i 's#\$releasever#7#g' /etc/yum.repos.d/Centos-7.repo // 把所有的\$releasever替换为7
[root@localhost yum.repos.d]# yum clean all
已加载插件:fastestmirror, langpacks
正在清理软件源: base extras updates
Cleaning up list of fastest mirrors
Other repos take up 45 M of disk space (use --verbose for details)
8.3 软件官方仓库
// 源查找方式基本一致,zabbix,mysql,saltstack,openstack等等,上官网找
[root@localhost ~]# rm -rf /etc/yum.repos.d/*
[root@localhost ~]# ls /etc/yum.repos.d/
[root@localhost ~]# yum list all |grep nginx
[root@localhost ~]# vim /etc/yum.repos.d/nginx.repo
[root@localhost ~]# cat /etc/yum.repos.d/nginx.repo
[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key
[nginx-mainline]
name=nginx mainline repo
baseurl=http://nginx.org/packages/mainline/centos/$releasever/$basearch/
gpgcheck=1
enabled=0
gpgkey=https://nginx.org/keys/nginx_signing.key
[root@localhost ~]# yum clean all
已加载插件:fastestmirror, langpacks
正在清理软件源: nginx-stable
Cleaning up list of fastest mirrors
Other repos take up 44 M of disk space (use --verbose for details)
[root@localhost ~]# yum list all |grep nginx
nginx.x86_64 1:1.16.1-1.el7.ngx nginx-stable
nginx-debug.x86_64 1:1.8.0-1.el7.ngx nginx-stable
nginx-debuginfo.x86_64 1:1.16.1-1.el7.ngx nginx-stable
nginx-module-geoip.x86_64 1:1.16.1-1.el7.ngx nginx-stable
nginx-module-geoip-debuginfo.x86_64
1:1.16.1-1.el7.ngx nginx-stable
nginx-module-image-filter.x86_64 1:1.16.1-1.el7.ngx nginx-stable
nginx-module-image-filter-debuginfo.x86_64
1:1.16.1-1.el7.ngx nginx-stable
nginx-module-njs.x86_64 1:1.16.1.0.3.5-1.el7.ngx nginx-stable
nginx-module-njs-debuginfo.x86_64 1:1.16.1.0.3.5-1.el7.ngx nginx-stable
nginx-module-perl.x86_64 1:1.16.1-1.el7.ngx nginx-stable
nginx-module-perl-debuginfo.x86_64 1:1.16.1-1.el7.ngx nginx-stable
nginx-module-xslt.x86_64 1:1.16.1-1.el7.ngx nginx-stable
nginx-module-xslt-debuginfo.x86_64 1:1.16.1-1.el7.ngx nginx-stable
nginx-nr-agent.noarch 2.0.0-12.el7.ngx nginx-stable
8.4 redhat7使用centos7的yum源
1.卸载红帽yum源
[root@localhost ~]# rpm -e $(rpm -qa|grep yum) --nodeps
2.删除所有repo相关文件
[root@localhost ~]# rm -f /etc/yum.conf
[root@localhost ~]# rm -rf /etc/yum.repos.d/
[root@localhost ~]# rm -rf /var/cache/yum
3.下载centos相关yum组件
[root@localhost ~]# wget http://mirror.centos.org/centos/7/os/x86_64/Packages/yum-3.4.3-161.el7.centos.noarch.rpm
[root@localhost ~]# wget http://mirror.centos.org/centos/7/os/x86_64/Packages/yum-metadata-parser-1.1.4-10.el7.x86_64.rpm
[root@localhost ~]# wget http://mirror.centos.org/centos/7/os/x86_64/Packages/yum-plugin-fastestmirror-1.1.31-50.el7.noarch.rpm
[root@localhost ~]# wget http://mirror.centos.org/centos/7/os/x86_64/Packages/yum-updateonboot-1.1.31-50.el7.noarch.rpm
[root@localhost ~]# wget http://mirror.centos.org/centos/7/os/x86_64/Packages/yum-utils-1.1.31-50.el7.noarch.rpm
//如果没有wget命令则使用curl命令
[root@localhost ~]# curl -o yum-utils-1.1.31-50.el7.noarch.rpm http://mirror.centos.org/centos/7/os/x86_64/Packages/yum-utils-1.1.31-50.el7.noarch.rpm
[root@localhost ~]# curl -o yum-3.4.3-161.el7.centos.noarch.rpm http://mirror.centos.org/centos/7/os/x86_64/Packages/yum-3.4.3-161.el7.centos.noarch.rpm
[root@localhost ~]# curl -o yum-metadata-parser-1.1.4-10.el7.x86_64.rpm http://mirror.centos.org/centos/7/os/x86_64/Packages/yum-metadata-parser-1.1.4-10.el7.x86_64.rpm
[root@localhost ~]# curl -o yum-plugin-fastestmirror-1.1.31-50.el7.noarch.rpm http://mirror.centos.org/centos/7/os/x86_64/Packages/yum-plugin-fastestmirror-1.1.31-50.el7.noarch.rpm
[root@localhost ~]# curl -o yum-updateonboot-1.1.31-50.el7.noarch.rpm http://mirror.centos.org/centos/7/os/x86_64/Packages/yum-updateonboot-1.1.31-50.el7.noarch.rpm
3.安装所有相关组件
[root@localhost ~]# rpm -ivh yum-* --nodeps
4.下载base和epel仓库
[root@localhost ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
[root@localhost ~]# sed -i 's#\$releasever#7#g' /etc/yum.repos.d/CentOS-Base.repo
[root@localhost ~]# wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
9. yum管理软件
9.1 yum命令语法:
yum [options] [command] [package ...]
9.2 常用的options:
--nogpgcheck //如果从网上下载包有时会检查gpgkey,此时可以使用此命令跳过gpgkey的检查
-y //自动回答为"yes"
-q //静默模式,安装时不输出信息至标准输出
--disablerepo=repoidglob //临时禁用此处指定的repo
--enablerepo=repoidglob //临时启用此处指定的repo
--noplugins //禁用所有插件
9.3 常用的command:
list //列表
all //默认项
available //列出仓库中有的,但尚未安装的所有可用的包
installed //列出已经安装的包
updates //可用的升级
clean //清理缓存
packages
headers
metadata
dbcache
all
repolist //显示repo列表及其简要信息
all
enabled //默认项
disabled
install //安装
yum install packages [...]
update //升级
yum update packages [...]
update_to //升级为指定版本
downgrade package1 [package2 ...] //降级
remove|erase //卸载
info //显示rpm -qi package的结果
yum info packages
provides|whatprovides //查看指定的文件或特性是由哪个包安装生成的
search string1 [string2 ...] //以指定的关键字搜索程序包名及summary信息
deplist package [package2 ...] //显示指定包的依赖关系
history //查看yum的历史事务信息
localinstall //安装本地rpm包,自动解决依赖关系
grouplist //列出可用的组
groupinstall "group name" //安装一组软件
createrepo命令 //创建yum仓库的元数据信息
[root@localhost ~]# yum install createrepo -y
[root@localhost ~]# createrepo [options] <directory>
list //列表
[root@localhost ~]# yum list installed
已加载插件:fastestmirror, langpacks
Loading mirror speeds from cached hostfile
已安装的软件包
acl.x86_64 2.2.51-14.el7 @base/$releasever
audit-libs.x86_64 2.8.5-4.el7 @base/$releasever
avahi-libs.x86_64 0.6.31-19.el7 @base/$releasever
[root@localhost packages]# yum install nginx //下载nginx但不安装
已加载插件:fastestmirror, langpacks
Determining fastest mirrors
nginx | 2.9 kB 00:00:00
xx | 3.6 kB 00:00:00
(1/3): xx/group_gz | 166 kB 00:00:00
(2/3): xx/primary_db | 3.1 MB 00:00:00
(3/3): nginx/x86_64/primary_db | 49 kB 00:00:01
正在解决依赖关系
--> 正在检查事务
---> 软件包 nginx.x86_64.1.1.16.1-1.el7.ngx 将被 安装
--> 解决依赖关系完成
依赖关系解决
=====================================================================================================================
Package 架构 版本 源 大小
=====================================================================================================================
正在安装:
nginx x86_64 1:1.16.1-1.el7.ngx nginx 766 k
事务概要
=====================================================================================================================
安装 1 软件包
总下载量:766 k
安装大小:2.7 M
Is this ok [y/d/N]: d
Background downloading packages, then exiting:
nginx-1.16.1-1.el7.ngx.x86_64.rpm | 766 kB 00:00:08
exiting because "Download Only" specified
[root@localhost packages]# rpm -q nginx
未安装软件包 nginx
[root@localhost packages]# yum list available |grep nginx
nginx.x86_64 1:1.16.1-1.el7.ngx nginx
nginx-debug.x86_64 1:1.8.0-1.el7.ngx nginx
nginx-debuginfo.x86_64 1:1.16.1-1.el7.ngx nginx
nginx-module-geoip.x86_64 1:1.16.1-1.el7.ngx nginx
nginx-module-geoip-debuginfo.x86_64 1:1.16.1-1.el7.ngx nginx
nginx-module-image-filter.x86_64 1:1.16.1-1.el7.ngx nginx
nginx-module-image-filter-debuginfo.x86_64
1:1.16.1-1.el7.ngx nginx
nginx-module-njs.x86_64 1:1.16.1.0.3.5-1.el7.ngx nginx
nginx-module-njs-debuginfo.x86_64 1:1.16.1.0.3.5-1.el7.ngx nginx
nginx-module-perl.x86_64 1:1.16.1-1.el7.ngx nginx
nginx-module-perl-debuginfo.x86_64 1:1.16.1-1.el7.ngx nginx
nginx-module-xslt.x86_64 1:1.16.1-1.el7.ngx nginx
nginx-module-xslt-debuginfo.x86_64 1:1.16.1-1.el7.ngx nginx
nginx-nr-agent.noarch 2.0.0-12.el7.ngx nginx
pcp-pmda-nginx.x86_64 4.1.0-4.el7 xx
[root@localhost ~]# yum list installed |grep nginx //-installed
[root@localhost ~]# yum list installed |grep vim
vim-common.x86_64 2:7.4.160-5.el7 @anaconda
vim-enhanced.x86_64 2:7.4.160-5.el7 @anaconda
vim-filesystem.x86_64 2:7.4.160-5.el7 @anaconda
vim-minimal.x86_64 2:7.4.160-5.el7 @anaconda
clean //清理缓存
[root@localhost ~]# cd /var/cache/yum/x86_64/7/nginx/packages/
[root@localhost packages]# ls
nginx-1.16.1-1.el7.ngx.x86_64.rpm
[root@localhost packages]# cd
[root@localhost ~]# ls /etc/yum.repos.d/
nginx.repo xx.repo
[root@localhost ~]# yum clean all
已加载插件:fastestmirror, langpacks
正在清理软件源: nginx xx
Cleaning up list of fastest mirrors
Other repos take up 44 M of disk space (use --verbose for details)
[root@localhost ~]# cd /var/cache/yum/x86_64/7/nginx/packages/
[root@localhost packages]# ls
[root@localhost packages]#
yum groupinstall “group name” //安装一组软件
yum groups mark install "group name"
[root@localhost ~]# yum groups mark install "开发工具"
已加载插件:fastestmirror, langpacks
Loading mirror speeds from cached hostfile
Marked install: 开发工具
[root@localhost ~]# yum grouplist
已加载插件:fastestmirror, langpacks
Loading mirror speeds from cached hostfile
可用的环境分组:
最小安装
基础设施服务器
计算节点
文件及打印服务器
基本网页服务器
虚拟化主机
带 GUI 的服务器
GNOME 桌面
KDE Plasma Workspaces
开发及生成工作站
已安装的组:
开发工具
可用组:
传统 UNIX 兼容性
兼容性程序库
图形管理工具
安全性工具
控制台互联网工具
智能卡支持
科学数法支持
系统管理
系统管理工具
完成
9.4 具体实例
9.4.1 搜索软件包
//列出软件仓库中可用的软件
[root@localhost ~]# yum list all
//进行模糊查找
[root@localhost ~]# yum list|grep ftp
//列出软件包详情
[root@localhost ~]# yum info ftp
9.4.2 安装软件包
//安装软件只需要给出软件名称
[root@localhost ~]# yum install traceroute
//安装过程中分析依赖关系后, 直接安装, 无需交互
[root@localhost ~]# yum -y install php
//安装本地的rpm包, 如果有依赖关系, 会自动从软件仓库中下载所需依赖(非来自.repo定义的软件仓库)
[root@localhost ~]# yum localinstall /mnt/Packages/bind-9.9.4-50.el7.x86_64.rpm
//安装网络上rpm包
[root@localhost ~]# yum install http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-2.el7.noarch.rpm
9.4.3 重装软件包
//检查软件是否存在
[root@localhost ~]# rpm -q vsftpd
vsftpd-2.2.2-24.el6.x86_64
//检查vsftpd软件配置文件
[root@localhost ~]# rpm -qc vsftpd
/etc/logrotate.d/vsftpd
/etc/pam.d/vsftpd
/etc/vsftpd/ftpusers
/etc/vsftpd/user_list
/etc/vsftpd/vsftpd.conf
//不小心删除vsftpd配置文件
[root@localhost ~]# rm -f /etc/vsftpd/vsftpd.conf
//重新安装软件
[root@localhost ~]# yum reinstall vsftpd
//再次检查
[root@localhost ~]# rpm -qc vsftpd
/etc/logrotate.d/vsftpd
/etc/pam.d/vsftpd
/etc/vsftpd/ftpusers
/etc/vsftpd/user_list
/etc/vsftpd/vsftpd.conf
9.4.4 更新软件包
//对比Linux已安装的软件和yum仓库中的软件, 有哪些需要升级
[root@localhost ~]# yum check-update
//更新软件
[root@localhost ~]# yum update acl -y
9.4.5 删除软件包
//先安装一个samba软件
[root@localhost ~]# yum -y install samba
//删除该软件包,不会删除依赖, 但是我们尽可能不要使用删除软件操作
[root@localhost ~]# yum -y erase samba
[root@localhost ~]# yum -y remove samba
9.4.6 与仓库相关的命令
//列出yum源可用的软件仓库
[root@localhost ~]# yum repolist
//列出全部yum源可用和禁用的仓库
[root@localhost ~]# yum repolist all
//查看这个文件或命令属于哪个包
[root@localhost ~]# yum provides /etc/my.cnf
[root@localhost ~]# yum provides cd
[root@localhost ~]# yum provides *bin/pstree
9.4.7 与缓存相关的命令
//缓存yum源软件仓库, xml元数据文件
[root@localhost ~]# yum makecache
//缓存软件包, 修改yum全局配置文件
[root@localhost ~]# vim /etc/yum.conf
[main]
cachedir=/var/cache/yum/$basearch/$releasever
keepcache=1 //启动缓存
//查看缓存的xml文件
[root@localhost ~]# ls /var/cache/yum/x86_64/7/base/
//查看缓存软件包路径
[root@localhost ~]# ls /var/cache/yum/x86_64/7/
#另一种缓存rpm包方式
//1.安装插件支持只下载软件包不安装
[root@localhost ~]# yum -y install yum-plugin-downloadonly
//2.将软件下载至指定目录
[root@localhost ~]# yum -y install --downloadonly --downloaddir=/tmp httpd
//清除所有yum缓存
[root@localhost ~]# yum clean all
//只清除缓存的软件包
[root@localhost ~]# yum clean packages
9.4.8 与包组相关的命令
//列出已经安装和所有可使用的软件组
[root@localhost ~]# yum groups list
//安装一整个组的软件
[root@localhost ~]# yum groups install Development tools \
Compatibility libraries \
Base Debugging Tools
//yum删除包组
[root@localhost ~]# yum groups remove -y Base
9.4.9 与历史记录相关的命令
//查看历史执行yum命令
[root@localhost ~]# yum history
//查询历史执行yum命令ID详细信息
[root@localhost ~]# yum history info N
//撤销历史执行过的yum命令
[root@localhost ~]# yum history undo N
9.4.10 YUM签名检查机制
- rpm软件提供组织redhat在构建rpm包时, 使用其私钥private key对 rpm进行签名
- 客户端在使用rpm为了验证其合法性, 可以使用redhat提供的公钥public key进行签名检查
方式1:指定公钥位置
[root@localhost ~]# vim /etc/yum.repos.d/CentOS-Base.repo
[base]
name=CentOS-$releasever - Base mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra #baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
方式2:提前导入公钥
[root@localhost ~]# rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
[root@localhost ~]# vim /etc/yum.repos.d/CentOS-Base.repo
[base]
name=CentOS-$releasever - Base
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra
baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
gpgcheck=1
方式3:不进行签名验证
//不检查软件包的签名
[root@localhost ~]# yum install httpd --nogpgcheck
作业:
- 如何配置本地光盘yum仓库以及网络yum仓库
//本地仓库
[root@localhost ~]# mount /dev/cdrom /mnt
mount: /dev/sr0 写保护,将以只读方式挂载
[root@localhost ~]# vim /etc/yum.repos.d/xx.repo
[root@localhost ~]# cat /etc/yum.repos.d/xx.repo
[xx]
name=sdasdasd
baseurl=file:///mnt
gpgcheck=0
enable=1
//网络仓库
[root@localhost ~]# cd /etc/yum.repos.d/
[root@localhost yum.repos.d]# wget http://mirrors.aliyun.com/repo/Centos-7.repo
--2019-09-28 19:30:51-- http://mirrors.aliyun.com/repo/Centos-7.repo
正在解析主机 mirrors.aliyun.com (mirrors.aliyun.com)... 222.192.186.37, 222.192.186.21, 222.192.186.38, ...
正在连接 mirrors.aliyun.com (mirrors.aliyun.com)|222.192.186.37|:80... 已连接。
已发出 HTTP 请求,正在等待回应... 200 OK
长度:2523 (2.5K) [application/octet-stream]
正在保存至: “Centos-7.repo”
100%[==================================================================>] 2,523 --.-K/s 用时 0s
2019-09-28 19:30:51 (346 MB/s) - 已保存 “Centos-7.repo” [2523/2523])
[root@localhost yum.repos.d]# sed -i 's#\$releasever#7#g' /etc/yum.repos.d/Centos-7.repo
[root@localhost yum.repos.d]# ls
Centos-7.repo nginx.repo xx.repo
[root@localhost yum.repos.d]# cat Centos-7.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 - mirrors.aliyun.com
failovermethod=priority
baseurl=http://mirrors.aliyun.com/centos/7/os/$basearch/
http://mirrors.aliyuncs.com/centos/7/os/$basearch/
http://mirrors.cloud.aliyuncs.com/centos/7/os/$basearch/
gpgcheck=1
gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-7
#released updates
[updates]
name=CentOS-7 - Updates - mirrors.aliyun.com
failovermethod=priority
baseurl=http://mirrors.aliyun.com/centos/7/updates/$basearch/
http://mirrors.aliyuncs.com/centos/7/updates/$basearch/
http://mirrors.cloud.aliyuncs.com/centos/7/updates/$basearch/
gpgcheck=1
gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-7
#additional packages that may be useful
[extras]
name=CentOS-7 - Extras - mirrors.aliyun.com
failovermethod=priority
baseurl=http://mirrors.aliyun.com/centos/7/extras/$basearch/
http://mirrors.aliyuncs.com/centos/7/extras/$basearch/
http://mirrors.cloud.aliyuncs.com/centos/7/extras/$basearch/
gpgcheck=1
gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-7
#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-7 - Plus - mirrors.aliyun.com
failovermethod=priority
baseurl=http://mirrors.aliyun.com/centos/7/centosplus/$basearch/
http://mirrors.aliyuncs.com/centos/7/centosplus/$basearch/
http://mirrors.cloud.aliyuncs.com/centos/7/centosplus/$basearch/
gpgcheck=1
enabled=0
gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-7
#contrib - packages by Centos Users
[contrib]
name=CentOS-7 - Contrib - mirrors.aliyun.com
failovermethod=priority
baseurl=http://mirrors.aliyun.com/centos/7/contrib/$basearch/
http://mirrors.aliyuncs.com/centos/7/contrib/$basearch/
http://mirrors.cloud.aliyuncs.com/centos/7/contrib/$basearch/
gpgcheck=1
enabled=0
gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-7
- 如何使用yum安装 httpd php nginx
[root@localhost ~]# yum -y install httpd php nginx
已安装:
nginx.x86_64 1:1.16.1-1.el7.ngx php.x86_64 0:5.4.16-46.el7
作为依赖被安装:
libzip.x86_64 0:0.10.1-8.el7 php-cli.x86_64 0:5.4.16-46.el7 php-common.x86_64 0:5.4.16-46.el7
更新完毕:
httpd.x86_64 0:2.4.6-90.el7.centos
作为依赖被升级:
httpd-tools.x86_64 0:2.4.6-90.el7.centos
完毕!
- 如何配置yum缓存rpm包(至少阐述两种方式)
[root@localhost ~]# yum -y install --downloadonly --downloaddir=/opt/ nginx
[root@localhost ~]# ls /opt/ //第一种
nginx-1.16.1-1.el7.ngx.x86_64.rpm
[root@localhost ~]# yum install //第二种
总下载量:766 k
安装大小:2.7 M
Is this ok [y/d/N]: d
Background downloading packages, then exiting:
nginx-1.16.1-1.el7.ngx.x86_64.rpm | 766 kB 00:00:27
exiting because "Download Only" specified
[root@localhost ~]# rpm -qa |grep nginx
[root@localhost ~]# ls /var/cache/yum/x86_64/7/nginx/packages/
nginx-1.16.1-1.el7.ngx.x86_64.rpm
- 如何使用yum安装本地缓存好的rpm包
yum localinstall package name
- 如何使用yum删除httpd软件包
yum -y remove httpd
- 如何构建企业内部yum仓库服务(请写出详细步骤,至少准备两台虚拟机