简述

最早使用linux是在高三时,买了两张盗版的linux安装盘,安装的RedHat什么版本记不清楚了。
那时候安装是需要选择精简安装完整安装,如果选了精简安装,很多应用就没有了。所以那时很苦恼,全装占磁盘,不全安装,要学习某个应用,又得重新拿B盘安装,我对装应用的印相一直停留在那个时候。

直到大学接触发了yum

yum是一个用于管理rpm包的后台程序,用python写成,可以非常方便的解决rpm的依赖关系。在建立好yum服务器后,yum客户端可以通过 http、ftp方式获得软件包,并使用方便的命令直接管理、更新所有的rpm包,甚至包括kernel的更新。它也可以理解为红旗环境下的apt管理工具。

yum search 搜索

搜索需要的应用包。

1
yum search httpd

yum-search

yum list 查询资源库中所有的可安装包

yum list 这是一个功能很全的查询工具,可以查询各种状态

1
yum list

模糊查询

1
2
3
4
yum list java*

# 也可以使用正则
yum list <正则>

yun-list

yum list updates 查询已安装可更新的包

1
2
3
4
5
6
# 列出所有可以更新的rpm包
yum list updates
# 正则表达式匹配
yum list updates <regex>
# 检查可更新的所有软件包
yum check-update

yum update 更新指定的包

更新指定的包

1
yum update java

下载更新系统已安装的所有软件包

1
yum update

yum list installed 查看已安装的包

列出资源库中所有已经安装的包

1
yum list installed

都是相关的视图,就不放图了。

筛选出指定已安装的应用

1
yum list installed | grpe java

yum remove 卸载指定的包

1
yum remove

yum list extras

列出已安装的但是不包含在资源库(Yum Repository)中的包

注:extras是repos.d中定义的资源列表名称

1
yum list extras

清空缓存

清除全部

1
yum clean

清除暂存中rpm包文件

1
yum clean packages

清除暂存中rpm头文件

1
yum clean headers

清除暂存中旧的rpm头文件

1
yum clean oldheaders

yum info 列出所有已安装的软件包信息

有固定格式,看起来比较习惯。

1
yum info installed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Loaded plugins: fastestmirror, ovl
Loading mirror speeds from cached hostfile
* base: mirrors.advancedhosters.com
* extras: mirrors.advancedhosters.com
* updates: forksystems.mm.fcix.net
===================================================================================================================== N/S matched: httpd ======================================================================================================================
keycloak-httpd-client-install.noarch : Tools to configure Apache HTTPD as Keycloak client
libmicrohttpd-devel.i686 : Development files for libmicrohttpd
libmicrohttpd-devel.x86_64 : Development files for libmicrohttpd
libmicrohttpd-doc.noarch : Documentation for libmicrohttpd
python2-keycloak-httpd-client-install.noarch : Tools to configure Apache HTTPD as Keycloak client
httpd.x86_64 : Apache HTTP Server
httpd-devel.x86_64 : Development interfaces for the Apache HTTP server
httpd-manual.noarch : Documentation for the Apache HTTP server
httpd-tools.x86_64 : Tools for use with the Apache HTTP Server
libmicrohttpd.i686 : Lightweight library for embedding a webserver in applications
libmicrohttpd.x86_64 : Lightweight library for embedding a webserver in applications
mod_auth_mellon.x86_64 : A SAML 2.0 authentication module for the Apache Httpd Server
mod_dav_svn.x86_64 : Apache httpd module for Subversion server

Name and summary matches only, use "search all" for everything.

No packages marked for update 问题

1
2
3
4
5
6
Loaded plugins: fastestmirror, ovl
Loading mirror speeds from cached hostfile
* base: coresite.mm.fcix.net
* extras: mirrors.advancedhosters.com
* updates: forksystems.mm.fcix.net
No packages marked for update