MySQL Forums
Forum List  »  MySQL Query Browser

Re: libpcre.so.0
Posted by: hugo hugo
Date: June 02, 2006 11:49PM

Hi,

I was having the same problem and I installed the versions ubuntu showed me (newer versions) so I had to add links to the new libraries using the old library names:



if:
error while loading shared libraries: libpcre.so.0: cannot open shared object file: No such file or directory

do this:

ln -s /usr/lib/libpcre.so.3 /usr/lib/libpcre.so.0
ln -s /usr/lib/libpcreposix.so.3 /usr/lib/libpcreposix.so.0
====================================================================





if:
error while loading shared libraries: libtiff.so.3: cannot open shared object file: No such file or directory

do this:

ln -s /usr/lib/libtiff.so.4 /usr/lib/libtiff.so.3
====================================================================


I ran these commands as root
Hope this helps!

Options: ReplyQuote




Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.