I want to install a HP CLI utility so I first check the dependencies and find out that something called rpmlib is needed :
[root@centos2 ~]# rpm -qRp hp-health-10.30-1752.15.rhel7.x86_64.rpm | grep rpmlib rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 rpmlib(PayloadIsXz) <= 5.2-1 I check if I have it already installed but can't find it :
[root@centos2 ~]# rpm -qa | grep -i rpmlib [root@centos2 ~]# yum list installed | grep -i rpmlib [root@centos2 ~]# I try to install anyway with yum and the package is installed without any problems and depedencies missing.
[root@centos2 ~]# yum list installed | grep -i hp hp-health.x86_64 10.30-1752.15.rhel7 installed Why?
I would like to know if it is possible that a package be installed on a system but not found when using rpm or yum commands?