Linux命令(7)rpm命令

2020-05-19 16:00:43来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

Linux命令(7)rpm命令

目录

  • rpm是什么?
  • 安装
  • 升级
  • 卸载
  • 查询
  • 校验
  • 数据库维护

rpm是什么?

rpm的全称为The RPM Package Manager,是RHEL系操作系统的软件包管理器,这些软件包的后缀为.rpm。

RPM命令用于在Linux系统上安装,卸载,升级,查询,列出和检查RPM软件包。

安装

rpm  -ivh  PACKAGE_FILE ...
  • -i,安装软件包
  • -v,显示命令执行过程
  • -h,输出进度条,以#的个数显示安装进度,一个#表示2%的进度

示例1:安装zsh软件包

[root@node1 ~]# rpm -ivh zsh-5.0.2-28.el7.x86_64.rpm 
Preparing...                          ################################# [100%]
Updating / installing...
   1:zsh-5.0.2-28.el7                 ################################# [100%]

升级

rpm  -Uvh PACKAGE_FILE ...
rpm  -Fvh PACKAGE_FILE ...
  • -U,升级或安装,安装有旧版程序包,则升级,如果不存在旧版程序包,则安装。

  • -F:升级,安装有旧版程序包,则升级,如果不存在旧版本程序包,则不执行升级操作。

示例2:将zsh软件包进行升级

[root@node1 ~]# rpm -Uvh zsh-5.0.2-34.el7.x86_64.rpm
Preparing...                          ################################# [100%]
Updating / installing...
   1:zsh-5.0.2-34.el7                 ################################# [ 50%]
Cleaning up / removing...
   2:zsh-5.0.2-28.el7                 ################################# [100%]

卸载

rpm -e PACKAGE_NAME ...

示例3:卸载zsh软件包

[root@node1 ~]# rpm -e zsh

查询

示例4:使用 rpm -qa 查询当前系统上以rpm方式安装的所有软件包

[root@node1 ~]# rpm -qa 
plymouth-scripts-0.8.9-0.33.20140113.el7.centos.x86_64
grub2-common-2.02-0.81.el7.centos.noarch
virt-what-1.18-4.el7.x86_64
setup-2.8.71-11.el7.noarch
...
  • -q,查询
  • -a,查询所有已经安装的包

示例5:使用 rpm -q 查询指定的软件包

[root@node1 ~]# rpm -q zsh
zsh-5.0.2-34.el7.x86_64

示例6:使用 rpm -qf 查询指定的文件或目录是由哪个软件包所安装的

[root@node1 ~]# rpm -qf /bin/ls
coreutils-8.22-24.el7.x86_64
  • -f,--file,文件名

示例7:使用 rpm -qi 查询安装的软件包的信息

[root@node1 ~]# rpm -qi zsh
Name        : zsh
Version     : 5.0.2
Release     : 34.el7
Architecture: x86_64
Install Date: Mon 18 May 2020 08:25:37 AM EDT
Group       : System Environment/Shells
Size        : 5856302
License     : MIT
Signature   : RSA/SHA256, Fri 03 Apr 2020 05:10:32 PM EDT, Key ID 24c6a8a7f4a80eb5
Source RPM  : zsh-5.0.2-34.el7.src.rpm
Build Date  : Tue 31 Mar 2020 09:31:30 PM EDT
Build Host  : x86-02.bsys.centos.org
Relocations : (not relocatable)
Packager    : CentOS BuildSystem <http://bugs.centos.org>
Vendor      : CentOS
URL         : http://zsh.sourceforge.net/
Summary     : Powerful interactive shell
Description :
The zsh shell is a command interpreter usable as an interactive login
shell and as a shell script command processor.  Zsh resembles the ksh
shell (the Korn shell), but includes many enhancements.  Zsh supports
command line editing, built-in spelling correction, programmable
command completion, shell functions (with autoloading), a history
mechanism, and more.
  • -i,--info,信息

示例8:使用 rpm -qc 查询指定的软件包在当前系统中安装的配置文件

[root@node1 ~]# rpm -qc zsh
/etc/skel/.zshrc
/etc/zlogin
/etc/zlogout
/etc/zprofile
/etc/zshenv
/etc/zshrc
  • -c,--configfiles,配置文件

示例9:使用 rpm -qd 查询指定的软件包在当前系统中安装的文档文件

[root@node1 ~]# rpm -qd zsh
/usr/share/doc/zsh-5.0.2/BUGS
/usr/share/doc/zsh-5.0.2/CONTRIBUTORS
/usr/share/doc/zsh-5.0.2/FAQ
/usr/share/doc/zsh-5.0.2/FEATURES
/usr/share/doc/zsh-5.0.2/LICENCE
...
  • -d,--docfiles,文档

示例10:使用 rpm -ql 查询指定的软件包在当前系统中安装的所有目录

root@node1 ~]# rpm -ql zsh
/bin/zsh
/etc/skel/.zshrc
/etc/zlogin
/etc/zlogout
/etc/zprofile
/etc/zshenv
/etc/zshrc
/usr/lib64/zsh
/usr/lib64/zsh/5.0.2
  • -l,--list,列表

示例11:使用 rpm -qR 查询指定的软件包所依赖的软件包

[root@node1 ~]# rpm -qR zsh
/bin/sh
/bin/sh
/bin/sh
/bin/sh
/bin/zsh
/sbin/install-info
/sbin/install-info
config(zsh) = 5.0.2-34.el7_8.2
coreutils
grep
  • -R,--requires,列出此软件包所依赖的功能

示例12:使用 rpm -q --scripts 查询指定的软件包自带的脚本

[root@node1 ~]# rpm -q --scripts zsh
postinstall scriptlet (using /bin/sh):
if [ ! -f /etc/shells ] ; then
    echo "/bin/zsh" > /etc/shells
else
    grep -q "^/bin/zsh$" /etc/shells || echo "/bin/zsh" >> /etc/shells
fi
...
  • --scripts,列出在安装和卸载过程中使用的特定于软件包的脚本。

校验

验证软件包会将软件包中已安装文件的信息与从rpm数据库中存储的软件包元数据中获取的文件的信息进行比较。

rpm -V PACKAGE_FILE ...

包来源合法性验证和完整性验证

  • 来源合法性验证:SHA256
  • 完整性验证:RSA

软件包制作者首先使用单向加密算法,计算包的特征码,然后使用私钥加密特征码然后附加至软件包尾部,制作者的公钥需要让任何人都拿到,通常在发行光盘中都有公钥。软件安装者使用公钥对软件进行来源合法性验证和完整性验证。

获取并导入信任的包制作者的公钥:

对于CentOS发行版来说

rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7	

验证:

? (1) 安装此组织签名的程序时,会自动执行验证;

? (2) 手动验证:rpm -K PACKAGE_FILE

示例:以安装epel源中的fping软件为例,先不导入公钥。

[root@node1 ~]# wget https://mirror.tuna.tsinghua.edu.cn/epel/7/x86_64/Packages/f/fping-3.10-4.el7.x86_64.rpm
[root@node1 ~]# rpm -ivh fping-3.10-4.el7.x86_64.rpm 
warning: fping-3.10-4.el7.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID 352c64e5: NOKEY
Preparing...                          ################################# [100%]
Updating / installing...
   1:fping-3.10-4.el7                 ################################# [100%]

示例:以安装epel源中的fping软件为例,导入公钥后再进行校验。

[root@node1 ~]# wget https://mirror.tuna.tsinghua.edu.cn/epel/RPM-GPG-KEY-EPEL-7
[root@node1 ~]# rpm --import RPM-GPG-KEY-EPEL-7
[root@node1 ~]# rpm -ivh fping-3.10-4.el7.x86_64.rpm
Preparing...                          ################################# [100%]
Updating / installing...
   1:fping-3.10-4.el7                 ################################# [100%]

示例:如何查看当前系统上已经导入的公钥。

[root@node1 ~]# rpm -q gpg-pubkey
gpg-pubkey-352c64e5-52ae6884
gpg-pubkey-f4a80eb5-53a7ff4b

数据库维护

rpm包的数据库位于/var/lib/rpm目录中。

  • --initdb初始化,如果事先不存在数据库,则新建之,否则,不执行任何操作。

  • --rebuilddb:重建,无论当前存在与否,直接重新创建数据库。

[root@node1 ~]# ls /var/lib/rpm
Basenames     __db.001  __db.003  Group       Name          Packages     Requirename  Sigmd5
Conflictname  __db.002  Dirnames  Installtid  Obsoletename  Providename  Sha1header   Triggername

原文链接:https://www.cnblogs.com/shijunxian/p/12914050.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:ubuntu修改键盘键位映射

下一篇:Centos系统中忘了root密码怎么办