Re: libdb.so.3: Potato-Woody

2001-08-21 Thread Johnny Morano
dont worry, it's not that bad.
i found out when i switched from potato-woody that sometimes you just have 
to softlink the missing files to existing (possibly with lower 
version-numbers) files... or sometimes do a 'dpkg -x package /' if it still 
wouldnt want to install. 

oh yeah, dont forget to run ldconfig when you've created new links to 
libraries.

greetz

(--[ on Tuesday 21 August 2001 11:10, P Kirk bothered us with ]::
^ perl: error while loading shared libraries: libdb.so.3: cannot open shared
^ objec
^ t file: No such file or directory
^
^ I've done a Google search and seen this come up a lot but can't find a fix.
^
^ Is my system now broken beyond repair or is there a way to fix this?
^ Manually compile glibc perhaps?

-- 
:---=::=:   
| L . I . F . E  ||the linux company|
.__/| Johnny Morano  ||linux pipo   |\__.
:  \| phone  ||  +32 16 208961  |/  :
|   | email  || [EMAIL PROTECTED] |   |
:   :---=::=:   :   
|   |
:__/:technology made us slaves to time:\__:
   \:-- nithin sawhney :: street guru --:/



Re: libdb.so.3: Potato-Woody

2001-08-21 Thread P Kirk
Thanks for replying but still struggling.


| dont worry, it's not that bad.
| i found out when i switched from potato-woody that sometimes you just
have
| to softlink the missing files to existing (possibly with lower
| version-numbers) files... or sometimes do a 'dpkg -x package /' if it
still
| wouldnt want to install.

What missing files?

enterprise:/home/patrick# locate libdb.so.3
/lib/libdb.so.3

Its there but not being used.  Should it be linked somewhere else?



|
| oh yeah, dont forget to run ldconfig when you've created new links to
| libraries.
|

--:/



Re: Re: libdb.so.3: Potato-Woody

2001-08-21 Thread P Kirk
Good call!  It is a broken symlink.

enterprise:/home/patrick# ls -al /lib/libdb.so.3
lrwxrwxrwx1 root root   14 Aug 21 10:00 /lib/libdb.so.3 -
libdb.so.3.old
enterprise:/home/patrick# locate libdb.so.3.old
enterprise:/home/patrick#

So, what do I need to do to get a libdb.so.3.old to link to?





Re: Re: Re: libdb.so.3: Potato-Woody

2001-08-21 Thread Johnny Morano
the trick i did was:
i check /lib/ for any libdb* and then just symlinked the one with the highest 
version to /lib/libdb.so.3 (maybe do ln -s /lib/libdb.so.2 /lib/libdb.so.3  
), i ran ldconfig, and it worked...


hope this will help...

(--[ on Tuesday 21 August 2001 11:40, P Kirk bothered us with ]::
^ Good call!  It is a broken symlink.
^
^ enterprise:/home/patrick# ls -al /lib/libdb.so.3
^ lrwxrwxrwx1 root root   14 Aug 21 10:00 /lib/libdb.so.3 -
^ libdb.so.3.old
^ enterprise:/home/patrick# locate libdb.so.3.old
^ enterprise:/home/patrick#
^
^ So, what do I need to do to get a libdb.so.3.old to link to?
^
^
^
^

-- 
:---=::=:   
| L . I . F . E  ||the linux company|
.__/| Johnny Morano  ||linux pipo   |\__.
:  \| phone  ||  +32 16 208961  |/  :
|   | email  || [EMAIL PROTECTED] |   |
:   :---=::=:   :   
|   |
:__/:technology made us slaves to time:\__:
   \:-- nithin sawhney :: street guru --:/



Re: libdb.so.3: Potato-Woody

2001-08-21 Thread John Galt

get the updated libdb2.  apt-get install libdb2.  This was supposed to be
fixed by now, I guess that the change will take some time to propagate.
dpkg/apt misprioritized things such that perl, which needed the new
version of libdb2, was getting upgraded before libdb2.

On Tue, 21 Aug 2001, P Kirk wrote:

perl: error while loading shared libraries: libdb.so.3: cannot open shared
objec
t file: No such file or directory

I've done a Google search and seen this come up a lot but can't find a fix.

Is my system now broken beyond repair or is there a way to fix this?
Manually compile glibc perhaps?
--
Patrick Kirk
GSM: +44 7876 560 646
ICQ: 42219699






-- 
There is an old saying that if a million monkeys typed on a million
keyboards for a million years, eventually all the works of Shakespeare
would be produced.   Now, thanks to Usenet, we know this is not true.

Who is John Galt?  [EMAIL PROTECTED], that's who!





Re: Re: Re: libdb.so.3: Potato-Woody

2001-08-21 Thread P Kirk
And it works for me as well.

Thanks Johnny!