yum命令来自于英文词组”YellowdogUpdater,Modified“的缩写,其功能是用于在Linux系统中基于RPM技术进行软件包的管理工作。yum技术通用于RHEL、CentOS、Fedora、OpenSUSE等主流系统,可以让系统管理人员交互式的自动化更新和管理软件包,实现从指定服务器自动下载、更新、删除软件包的工作。

yum软件仓库及命令能够自动处理软件依赖关系,一次性安装所需全部软件,无需繁琐的操作。

语法格式:yum [参数] 软件包

常用参数:

-h显示帮助信息
-y对所有的提问都回答“yes”
-c指定配置文件
-q安静模式
-v详细模式
-t检查外部错误
-d设置调试等级(0-10)
-e设置错误等级(0-10)
-R设置yum处理一个命令的最大等待时间
-C完全从缓存中运行,而不去下载或者更新任何头文件
install安装rpm软件包
update更新rpm软件包
check-update检查是否有可用的更新rpm软件包
remove删除指定的rpm软件包
list显示软件包的信息
search检查软件包的信息
info显示指定的rpm软件包的描述信息和概要信息
clean清理yum过期的缓存
shell进入yum的shell提示符
resolvedep显示rpm软件包的依赖关系
localinstall安装本地的rpm软件包
localupdate显示本地rpm软件包进行更新
deplist显示rpm软件包的所有依赖关系

参考实例

清理原有的软件仓库信息缓存:

[root@linuxcool ~]# yum clean all
Updating Subscription Management repositories.
Unable to read consumer identity
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
12 files removed

建立最新的软件仓库信息缓存:

[root@linuxcool ~]# yum makecache
Updating Subscription Management repositories.
Unable to read consumer identity
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
AppStream                                        83 MB/s | 5.3 MB     00:00    
BaseOS                                           28 MB/s | 2.2 MB     00:00    
Last metadata expiration check: 0:00:01 ago on Mon 09 May 2022 11:43:41 PM CST.
Metadata cache created.

安装指定的服务及相关软件包:

[root@linuxcool ~]# yum install httpd
………………省略输出信息………………

更新指定的服务及相关软件包:

[root@linuxcool ~]# yum update httpd
………………省略输出信息………………

卸载指定的服务及相关软件包:

[root@linuxcool ~]# yum remove httpd
………………省略输出信息………………

显示可安装的软件包组列表:

[root@linuxcool ~]# yum grouplist 
Updating Subscription Management repositories.
Unable to read consumer identity

Last metadata expiration check: 0:03:02 ago on Mon 09 May 2022 11:43:41 PM CST.
Available Environment Groups:
   Server
   Minimal Install
   Workstation
   Virtualization Host
   Custom Operating System
Installed Environment Groups:
   Server with GUI
Installed Groups:
   Container Management
   Headless Management
Available Groups:
   .NET Core Development
………………省略部分输出信息………………

显示指定服务的软件信息:

[root@linuxcool ~]# yum info httpd
Updating Subscription Management repositories.
Unable to read consumer identity
Last metadata expiration check: 0:07:21 ago on Mon 09 May 2022 11:43:41 PM CST.
Installed Packages
Name         : httpd
Version      : 2.4.37
Release      : 10.module+el8+2764+7127e69e
Arch         : x86_64
Size         : 4.3 M
Source       : httpd-2.4.37-10.module+el8+2764+7127e69e.src.rpm
Repo         : @System
From repo    : AppStream
Summary      : Apache HTTP Server
URL          : https://httpd.apache.org/
License      : ASL 2.0
Description  : The Apache HTTP Server is a powerful, efficient, and extensible
             : web server.
Author