Vikram Khurana wrote:
rpm -qa | grep package
doesn't show it. But I can tell it is installed because of some of the
files it has installed.
That's odd.
What does
rpm -qf /path/to/one/of/the/files/installed
say?
Do I need to somehow update the RPM database or something?
If the database really is wrong you can do
rpm -I --justdb --force package-version.arch.rpm
where package-version.arch.rpm is the full path to the rpm you used.
This is update the database
to reflect that the package is already installed.
--Ray