> What packages are the following libraries in?
> libgconf-1.so.1, libgconf-gtk-1.so.1, libgnomevfs.so.0 and liboaf.so.0
> ------------------------------------

rpm -q --whatprovides libgconf-1.so.1

GConf-1.0.4-3

is one way.

Another is to type libgconf-1.so.1 into the search box at www.rpmfind.net.
Comes up with the same answer.

> Is there a list of what libraries are installed by which .rpm packages??
> Is there some cute rpm command option that will reveal this, i.e. the
package a
> missing lib is in?

How about a cute script? Run in the RPM directory of your RedHat CD:

--

#!/bin/sh
# rpmgrind: (greps/finds things in rpms)
# usage: cd dir_w_rpms; rpmgrind word


word=$1

for rpm in *.rpm;  do
   rpm -qlp ${rpm} | grep -qs ${word}
   if [ "$?" != 1 ]; then
        echo ${rpm}
   fi
done

---

---
Edward Dekkers (Director)
Triple D Computer Services P/L




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to