LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   pine install problem libcrypto.so.0 needed (https://www.linuxquestions.org/questions/linux-software-2/pine-install-problem-libcrypto-so-0-needed-168079/)

anamika123 04-09-2004 06:53 AM

pine install problem libcrypto.so.0 needed
 
I am trying to install pine (mandrake distro) but its saying that two files (libcrypto.so.0 and libssl.so.0) are needed. I checked it and it is already there in the /usr/lib/. Can anybody help me

Thanks
Anamika

jailbait 04-09-2004 06:53 PM

"I am trying to install pine (mandrake distro) but its saying that two files (libcrypto.so.0 and libssl.so.0) are needed. I checked it and it is already there in the /usr/lib/."

When a rpm package is installed the dependencies are checked in the rpm data base. rpm does not go look for the actual libraries. So it is possible that the two files are actually in /usr/lib but are not recorded in the rpm data base. Use these commands to see if the files are recorded in the rpm data base:
rpm -q --whatprovides /usr/lib/libcrypto.so.0
rpm -q --whatprovides /usr/lib/libssl.so.0

If your problem is that the files exist but are not in the rpm data base then you can tell rpm to install without doing any dependency checks:
rpm --nodeps -i /pathname/pine-xx.xx.rpm

See:
man rpm

___________________________________
Be prepared. Create a LifeBoat CD.
http://users.rcn.com/srstites/LifeBo...home.page.html

Steve Stites

roYal 04-09-2004 07:26 PM

does nano come packaged in mandrake?

cameron 04-26-2004 02:18 PM

that --nodeps bit of knowledge rocks.

cameron 04-26-2004 02:49 PM

still problems
 
Quote:

nids-file: error while loading shared libraries: libssl.so.0.9.7: cannot open shared object file: No such file or directory
I'm getting this error... I see that I have the /usr/local/libssl.so

Is there any easy way to get past this and have it look to that file?

jailbait 04-26-2004 03:05 PM

" nids-file: error while loading shared libraries: libssl.so.0.9.7: cannot open shared object file: No such file or directory

I'm getting this error... I see that I have the /usr/local/libssl.so
Is there any easy way to get past this and have it look to that file?"

Your file tree seems to be different than mine. What distribution are you using? Do you mean /usr/lib/libssl.so?

The first thing to do is to find all of the pieces of libssl. Try looking here:
ls -l /lib/libssl*
ls -l /usr/lib/libssl*
ls -l /usr/local/libssl*

If you are on a rpm base distribution then once you find libssl.so.0.9.7 ask whether the full pathname and file are in the rpm data base.
rpm -q --whatprovides /pathname/libssl.so.0.9.7
Then try:
rpm -qi openssl

Then you should have enough information to figure out the answer as to why you are getting the error message.

___________________________________
Be prepared. Create a LifeBoat CD.
http://users.rcn.com/srstites/LifeB....home.page.html

Steve Stites

cameron 04-26-2004 03:51 PM

It was /usr/lib

I think the problem lies in the fact it is searching for /lib/libssl.so.0.9.7 when it should be lib.ssl.so.0.9.7a

jailbait 04-26-2004 03:58 PM

"I think the problem lies in the fact it is searching for /lib/libssl.so.0.9.7 when it should be lib.ssl.so.0.9.7a"

Then you can probably solve the problem with a symbolic link. Try this as root:
ln -s libssl.so.0.9.7a /lib/libssl.so.0.9.7

___________________________________
Be prepared. Create a LifeBoat CD.
http://users.rcn.com/srstites/LifeB....home.page.html

Steve Stites


All times are GMT -5. The time now is 04:19 PM.