本文最后更新于 319 天前,其中的信息可能已经过时,如有错误请发送邮件到wuxianglongblog@163.com
rpm命令
RPM
rpm(英文全拼:redhat package manager) 原本是 Red Hat Linux 发行版专门用来管理 Linux 各项套件的程序。
由于它遵循 GPL 规则且功能强大方便,因而广受欢迎。逐渐受到其他发行版的采用。
RPM 套件管理方式的出现,让 Linux 易于安装,升级,间接提升了 Linux 的适用度。
rpm -ivh 安装已有rpm包
[23:19:21 root@C8-3-55 ~]#ll /misc/cd/AppStream/Packages/*.el8.x86_64.rpm |grep vsftp
-r--r--r--. 1 root root 183892 7月 2 2019 /misc/cd/AppStream/Packages/vsftpd-3.0.3-28.el8.x86_64.rpm
[23:19:54 root@C8-3-55 ~]#rpm -ivh /misc/cd/AppStream/Packages/vsftpd-3.0.3-28.el8.x86_64.rpm
Verifying... ################################# [100%]
准备中... ################################# [100%]
正在升级/安装...
1:vsftpd-3.0.3-28.el8 ################################# [100%]
rpm -q 用于检查软件是否安装成功
判断是否已安装
[22:48:49 root@C8-3-55 ~]#rpm -q autofs
autofs-5.1.4-43.el8.x86_64
[22:49:09 root@C8-3-55 ~]#echo $?
0
[22:49:37 root@C8-3-55 ~]#rpm -q nginx
未安装软件包 nginx
[22:49:54 root@C8-3-55 ~]#echo $?
判断软件包是否已安装,如果没有安装,则进行yum安装
[22:49:59 root@C8-3-55 ~]#rpm -q nginx ||yum -y install nginx
未安装软件包 nginx
Repository AppStream is listed more than once in the configuration
Repository extras is listed more than once in the configuration
Repository PowerTools is listed more than once in the configuration
Repository centosplus is listed more than once in the configuration
CentOS-8 - AppStream - mirrors.aliyun.com 35 kB/s | 4.3 kB 00:00
CentOS-8 - Base - mirrors.aliyun.com 30 kB/s | 3.9 kB 00:00
CentOS-8 - Extras - mirrors.aliyun.com 12 kB/s | 1.5 kB 00:00
依赖关系解决。
rpm -qa 模糊搜索相关rpm包
[22:52:52 root@C8-3-55 ~]#rpm -qa | wc -l
804
[22:55:13 root@C8-3-55 ~]#rpm -qa | grep nginx
nginx-mod-http-image-filter-1.14.1-9.module_el8.0.0+184+e34fea82.x86_64
nginx-mod-mail-1.14.1-9.module_el8.0.0+184+e34fea82.x86_64
nginx-filesystem-1.14.1-9.module_el8.0.0+184+e34fea82.noarch
nginx-mod-stream-1.14.1-9.module_el8.0.0+184+e34fea82.x86_64
nginx-mod-http-perl-1.14.1-9.module_el8.0.0+184+e34fea82.x86_64
nginx-1.14.1-9.module_el8.0.0+184+e34fea82.x86_64
nginx-mod-http-xslt-filter-1.14.1-9.module_el8.0.0+184+e34fea82.x86_64
nginx-all-modules-1.14.1-9.module_el8.0.0+184+e34fea82.noarch
rpm -qi 查询软件安装详细信息
显示包名、版本、架构、安装时间等相关详细信息
[22:56:49 root@C8-3-55 ~]#whatis nginx
nginx (3pm) - Perl interface to the nginx HTTP server API
nginx (8) - "HTTP and reverse proxy server, mail proxy server"
[22:58:28 root@C8-3-55 ~]#which nginx
/usr/sbin/nginx
[22:58:35 root@C8-3-55 ~]#rpm -q nginx
nginx-1.14.1-9.module_el8.0.0+184+e34fea82.x86_64
[22:58:46 root@C8-3-55 ~]#rpm -iq nginx
nginx-1.14.1-9.module_el8.0.0+184+e34fea82.x86_64
##说明qi 和iq是有先后顺序的
[22:59:09 root@C8-3-55 ~]#rpm -qi nginx
Name : nginx
Epoch : 1
Version : 1.14.1
Release : 9.module_el8.0.0+184+e34fea82
Architecture: x86_64
Install Date: 2021年03月24日 星期三 22时52分51秒
Group : System Environment/Daemons
Size : 1734583
License : BSD
Signature : RSA/SHA256, 2019年10月09日 星期三 17时44分27秒, Key ID 05b555b38483c65d
Source RPM : nginx-1.14.1-9.module_el8.0.0+184+e34fea82.src.rpm
Build Date : 2019年10月07日 星期一 17时17分55秒
Build Host : x86-02.mbox.centos.org
Relocations : (not relocatable)
Packager : CentOS Buildsys <bugs@centos.org>
Vendor : CentOS
URL : http://nginx.org/
Summary : A high performance web server and reverse proxy server
Description :
Nginx is a web server and a reverse proxy server for HTTP, SMTP, POP3 and
IMAP protocols, with a strong focus on high concurrency, performance and low
memory usage.
rpm -ql 显示包中的所有文件
[23:03:39 root@C8-3-55 ~]#rpm -ql nginx | tail -10
/usr/share/nginx/html/50x.html
/usr/share/nginx/html/index.html
/usr/share/nginx/html/nginx-logo.png
/usr/share/nginx/html/poweredby.png
/usr/share/vim/vimfiles/ftdetect/nginx.vim
/usr/share/vim/vimfiles/indent/nginx.vim
/usr/share/vim/vimfiles/syntax/nginx.vim
/var/lib/nginx
/var/lib/nginx/tmp
/var/log/nginx
[23:03:43 root@C8-3-55 ~]#rpm -ql nginx | wc -l
43
rpm -qc 查看软件配置文件
[23:20:34 root@C8-3-55 ~]#rpm -qc vsftpd
/etc/logrotate.d/vsftpd
/etc/pam.d/vsftpd
/etc/vsftpd/ftpusers
/etc/vsftpd/user_list
/etc/vsftpd/vsftpd.conf
rpm -q --scripts 查看软件安装脚本
[23:21:35 root@C8-3-55 ~]#rpm -q --scripts vsftpd
postinstall scriptlet (using /bin/sh):## 安装后运行的脚本
if [ $1 -eq 1 ] ; then
# Initial installation
systemctl --no-reload preset vsftpd.service &>/dev/null || :
fi
preuninstall scriptlet (using /bin/sh): ## 卸载前运行的脚本
if [ $1 -eq 0 ] ; then
# Package removal, not upgrade
systemctl --no-reload disable --now vsftpd.service &>/dev/null || :
fi
if [ $1 -eq 0 ] ; then
# Package removal, not upgrade
systemctl --no-reload disable --now vsftpd.target &>/dev/null || :
fi
postuninstall scriptlet (using /bin/sh):
if [ $1 -ge 1 ] ; then
# Package upgrade, not uninstall
systemctl try-restart vsftpd.service &>/dev/null || :
fi
rpm -qf 查询文件来自于哪个rpm包
rpm包安装部署后,会在/var/lab/rpm中生成对应的数据库文件
rpm -qf 等操作查询的是数据库中文件中记录的内容
删除文件后,若对应数据库并未删除,则仍然可以查询到信息
这里所说的文件是指安装程序的相关文件
[23:34:26 root@C8-3-55 ~]#rpm -qf /usr/bin/tree
tree-1.7.0-15.el8.x86_64
删除tree文件,同时找回重新安装
[23:38:17 root@C8-3-55 ~]#find /misc/cd/ -name tree*
/misc/cd/BaseOS/Packages/tree-1.7.0-15.el8.x86_64.rpm
[23:38:33 root@C8-3-55 ~]#rm -f /usr/bin/tree
[23:39:06 root@C8-3-55 ~]#rpm -qa tree
tree-1.7.0-15.el8.x86_64
[23:39:23 root@C8-3-55 ~]#tree
-bash: tree: 未找到命令
[23:39:30 root@C8-3-55 ~]#rpm -qf /usr/bin/tree
tree-1.7.0-15.el8.x86_64
[23:39:55 root@C8-3-55 ~]#rpm -ivh /misc/cd/BaseOS/Packages/tree-1.7.0-15.el8.x86_64.rpm
Verifying... ################################# [100%]
准备中... ################################# [100%]
软件包 tree-1.7.0-15.el8.x86_64 已经安装
[23:43:08 root@C8-3-55 ~]#rpm -ql /usr/bin/tree 未安装软件包 /usr/bin/tree
使用 --force 强行覆盖安装
[23:44:53 root@C8-3-55 ~]#rpm -ivh /misc/cd/BaseOS/Packages/tree-1.7.0-15.el8.x86_64.rpm --force
Verifying... ################################# [100%]
准备中... ################################# [100%]
正在升级/安装...
1:tree-1.7.0-15.el8 ################################# [100%]
[23:46:05 root@C8-3-55 ~]#tree
.
├── -
├── 1
├── 123456.tct
├── 123456.txt
├── 123.txt
├── 1.txt
├── 2.txt
├── 9x9.sh
├── 9x9_v1.2.sh
软件包坏了,重装软件就行了 *
数据文件丢了,就真的麻烦了 *
rpm -e 卸载已安装的rpm包
rpm -e --nodeps 不管依赖,强行卸载
RPM 详细帮助
rpm --help
用法: rpm [选项...]
查询/验证软件包选项:
-a, --all 查询/验证所有软件包
-f, --file 查询/验证文件属于的软件包
-g, --group 查询/验证组中的软件包
-p, --package 查询/验证一个软件包
--pkgid 根据软件包标识符查找/校验软件包
--hdrid 根据头部标识符查找/校验软件包
--triggeredby 查找由软件包所触发的软件包
--whatconflicts 查找/校验需要某个依赖对象的软件包
--whatrequires 查找/校验需要某个依赖对象的软件包
--whatobsoletes query/verify the package(s) which obsolete
a dependency
--whatprovides 查询/验证提供相关依赖的软件包
--whatrecommends query/verify the package(s) which
recommends a dependency
--whatsuggests query/verify the package(s) which suggests
a dependency
--whatsupplements query/verify the package(s) which
supplements a dependency
--whatenhances query/verify the package(s) which enhances
a dependency
--nomanifest 不把非软件包文件作为清单处理
查询选项(用 -q 或 --query):
-c, --configfiles 列出所有配置文件
-d, --docfiles 列出所有程序文档
-L, --licensefiles 列出所有许可证文件
-A, --artifactfiles list all artifact files
--dump 转储基本文件信息
-l, --list 列出软件包中的文件
--queryformat=QUERYFORMAT 使用这种格式打印信息
-s, --state 显示列出文件的状态
验证选项(用 -V 或 --verify):
--nofiledigest 不验证文件摘要
--nofiles 不验证软件包中文件
--nodeps 不验证包依赖
--noscript 不执行验证脚本
安装/升级/擦除选项:
--allfiles 安装全部文件,包含配置文件,否则配置文件会被跳过。
--allmatches 移除所有符合 <package>
的软件包(如果 <package>
被指定未多个软件包,常常会导致错误出现)
--badreloc 对不可重定位的软件包重新分配文件位置
-e, --erase=<package>+ 清除 (卸载) 软件包
--excludedocs 不安装程序文档
--excludepath=<path> 略过以 <path> 开头的文件
--force --replacepkgs --replacefiles 的缩写
-F, --freshen=<packagefile>+ 如果软件包已经安装,升级软件包
-h, --hash 软件包安装的时候列出哈希标记
(和 -v 一起使用效果更好)
--ignorearch 不验证软件包架构
--ignoreos 不验证软件包操作系统
--ignoresize 在安装前不检查磁盘空间
--noverify short hand for --ignorepayload
--ignoresignature
-i, --install 安装软件包
--justdb 更新数据库,但不修改文件系统
--nodeps 不验证软件包依赖
--nofiledigest 不验证文件摘要
--nocontexts 不安装文件的安全上下文
--nocaps don't install file capabilities
--noorder 不对软件包安装重新排序以满足依赖关系
--noscripts 不执行软件包小脚本
--notriggers 不执行本软件包触发的任何小脚本
--oldpackage 更新到软件包的旧版本(带 --force
自动完成这一功能)
--percent 安装软件包时打印百分比
--prefix=<dir> 如果可重定位,便把软件包重定位到 <dir>
--relocate=<old>=<new> 将文件从 <old> 重定位到 <new>
--replacefiles 忽略软件包之间的冲突的文件
--replacepkgs 如果软件包已经有了,重新安装软件包
--test 不真正安装,只是判断下是否能安装
-U, --upgrade=<packagefile>+ 升级软件包
--reinstall=<packagefile>+ 重新安装软件包
所有 rpm 模式和可执行文件的通用选项:
-D, --define=“MACRO EXPR” 定义值为 EXPR 的 MACRO
--undefine=MACRO 未定义的 MACRO
-E, --eval=“EXPR” 打印 EXPR 的宏展开
--target=CPU-VENDOR-OS Specify target platform
--macros=<FILE:…> 从文件 <FILE:...>
读取宏,不使用默认文件
--noplugins 不要启用任何插件
--nodigest 不校验软件包的摘要
--nosignature 不验证软件包签名
--rcfile=<FILE:…> 从文件 <FILE:...>
读取宏,不使用默认文件
-r, --root=ROOT 使用 ROOT 作为顶级目录 (default:
"/")
--dbpath=DIRECTORY 使用 DIRECTORY 目录中的数据库
--querytags 显示已知的查询标签
--showrc 显示最终的 rpmrc 和宏配置
--quiet 提供更少的详细信息输出
-v, --verbose 提供更多的详细信息输出
--version 打印使用的 rpm 版本号