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
[root@localhost ~]# rpm -qf /etc/passwd
setup-2.8.14-20.ky3.1.noarch
rpm -ql 软件包名 查询软件包中的文件安装到哪些目录下
rpm -ql passwd
[root@localhost ~]# rpm -ql passwd
/etc/pam.d/passwd
/usr/bin/passwd
...
/usr/share/man/man1/passwd.1.gz
rpm -qi 查询软件包信息
[root@localhost ~]# rpm -qi passwd
Name : passwd Relocations: (not relocatable)
Version : 0.77 Vendor: Kylin
Release : 4.ky3.2 Build Date: 2012年07月16日 星期一 23时20分54秒
Install Date: 2019年01月24日 星期四 15时41分22秒 Build Host: localhost
Group : System Environment/Base Source RPM: passwd-0.77-4.ky3.2.src.rpm
Size : 357699 License: BSD or GPLv2+
Signature : RSA/SHA1, 2015年03月11日 星期三 15时04分41秒, Key ID a8454df2aa7580fc
Packager : KyBuilder
URL : http://fedorahosted.org/passwd
Summary : An utility for setting or changing passwords using PAM
Description :
This package contains a system utility (passwd) which sets
or changes passwords, using PAM (Pluggable Authentication
Modules) library.
rpm -e 包名 卸载rpm软件包
rpm -ivh 包路径+包名
i =install
v=verbose 提示
h=hash 进度条