Operating System - Linux
1833759 Members
2476 Online
110063 Solutions
New Discussion

which rpm is required to install abc.so.x.y.z ?

 
SOLVED
Go to solution
Maaz
Valued Contributor

which rpm is required to install abc.so.x.y.z ?

so how can i know which rpm is required to install 'libpcap.so.0.6.2' ?

# rpm -Uvh snort-2.0.0-0.fdr.1.rh90.i386.rpm
warning: snort-2.0.0-0.fdr.1.rh90.i386.rpm: V3 DSA signature: NOKEY, key ID 8df56d05
error: Failed dependencies:
libpcap.so.0.6.2 is needed by snort-2.0.0-0.fdr.1.rh90


Thanks in advance
Regards
Maaz
6 REPLIES 6
Ermin Borovac
Honored Contributor
Solution

Re: which rpm is required to install abc.so.x.y.z ?

# rpm -q --whatprovides libpcap.so.0.6.2
Ermin Borovac
Honored Contributor

Re: which rpm is required to install abc.so.x.y.z ?

Also see the following link on advice how to automatically resolve dependencies with rpm --aid option (it needs rpmdb-redhat package).

http://www.redhat.com/advice/tips/rhce/rpm.html
Vitaly Karasik_1
Honored Contributor

Re: which rpm is required to install abc.so.x.y.z ?

and in your case you need libpcap-0.x.y.rpm package

NiCK_76
Respected Contributor

Re: which rpm is required to install abc.so.x.y.z ?

http://www.rpmfind.net/

search libpcap.so.0.6.2.
just for fun
NiCK_76
Respected Contributor

Re: which rpm is required to install abc.so.x.y.z ?

Maybe you can install rpm package with aid option . For example:
rpm -Uvh --aid snort-2.0.0-0.fdr.1.rh90.i386.rpm
libpcap.so.0.6.2 will be installed automatic.
just for fun
HGN
Honored Contributor

Re: which rpm is required to install abc.so.x.y.z ?

Hi

As mentioned by Nick you can check on the URL

http://www.rpmfind.net/

You may also want to install the associated rpm's along with this.

When you try to install gcc gcc++ it will still require more lib rpm's you can better install all dependencies together.

Rgds

HGN