rpm -qa 查询所有安装的rpm软件包
    rpm -qa|grep xxx 查询是否安装了指定名称的安装包
    setup-2.8.71-7.ky3.kb9.pg.noarch noarch 表示通用的包
    x32/x64 表示32或64位的包

    rpm -qf 文件路径 查询安装的文件所属哪个软件包
    rpm -qf /etc/passwd

    1. [root@localhost ~]# rpm -qf /etc/passwd
    2. setup-2.8.14-20.ky3.1.noarch

    rpm -ql 软件包名 查询软件包中的文件安装到哪些目录下
    rpm -ql passwd

    1. [root@localhost ~]# rpm -ql passwd
    2. /etc/pam.d/passwd
    3. /usr/bin/passwd
    4. ...
    5. /usr/share/man/man1/passwd.1.gz

    rpm -qi 查询软件包信息

    1. [root@localhost ~]# rpm -qi passwd
    2. Name : passwd Relocations: (not relocatable)
    3. Version : 0.77 Vendor: Kylin
    4. Release : 4.ky3.2 Build Date: 20120716 星期一 232054
    5. Install Date: 20190124 星期四 154122 Build Host: localhost
    6. Group : System Environment/Base Source RPM: passwd-0.77-4.ky3.2.src.rpm
    7. Size : 357699 License: BSD or GPLv2+
    8. Signature : RSA/SHA1, 20150311 星期三 150441秒, Key ID a8454df2aa7580fc
    9. Packager : KyBuilder
    10. URL : http://fedorahosted.org/passwd
    11. Summary : An utility for setting or changing passwords using PAM
    12. Description :
    13. This package contains a system utility (passwd) which sets
    14. or changes passwords, using PAM (Pluggable Authentication
    15. Modules) library.

    rpm -e 包名 卸载rpm软件包
    rpm -ivh 包路径+包名
    i =install
    v=verbose 提示
    h=hash 进度条