0

Trying to check if qpid is installed on RHEL6 I've done the following and nothing comes up, but it supposed to be installed

rpm -qa qpid
Sam Gomari
  • 733
  • 4
  • 13
  • 37

1 Answers1

1

It is safe to do

rpm -qa '*qpid*'

One reason is that exact package name may be something else. Don't forget the single quotes as his prevents globbing in case there are files or directories that match qpid in the current directory.

sjsam
  • 21,411
  • 5
  • 55
  • 102
  • 2
    @SamGomari You know *what* is installed? You can test for what package owns a given file with `rpm -qf /path/to/file` if that helps. – Etan Reisner Apr 27 '16 at 18:49