Re: Shared Library Error

2006-05-04 Thread Soo-Hyun Choi

Hi,

It is not solving the problem. :-(

Thanks,



On 5/4/06, Kalashnikov Ilya <[EMAIL PROTECTED]> wrote:


On Thu, 2006-05-04 at 16:34 +0100, Soo-Hyun Choi wrote:

I did "ldconfig -R" and "ldconfig -m /usr/local/lib" but I still get the
error message. So, how would you explicitly do with that if you get: [
[EMAIL PROTECTED] ~]$firefox /libexec/ld-elf.so.1: Shared object "
libgmodule-2.0.so.600" not found, required by "libgtk-x11-2.0.so.600"
Thanks, On 5/4/06, [EMAIL PROTECTED]@mgEDV.net <[EMAIL PROTECTED]> wrote: > > > 
How
do I check/modify ldconfig settings? Would you give me some > > examples?
> > ! man ldconfig > ldconfig -r > ls -l /etc/ld* > ls -l /var/run/ld* >
echo $LD_LIBRARY_PATH > >
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions To
unsubscribe, send any mail to "[EMAIL PROTECTED]"

make link with name libgmodule-2.0.so.600 to libgmodule-2.0.so and try
again.
run as root:
*prompt# ln -s **libgmodule-2.0.so** **libgmodule-2.0.so.600*
  --
Kalashnikov Ilya <[EMAIL PROTECTED]>


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Shared Library Error

2006-05-04 Thread Kalashnikov Ilya
On Thu, 2006-05-04 at 16:34 +0100, Soo-Hyun Choi wrote:

> I did "ldconfig -R" and "ldconfig -m /usr/local/lib" but I still get
> the error message.
> 
> So, how would you explicitly do with that if you get:
> [EMAIL PROTECTED] ~]$firefox
> /libexec/ld-elf.so.1: Shared object "libgmodule-2.0.so.600" not found,
> required by "libgtk-x11-2.0.so.600"
> 
> Thanks,
> 
> 
> On 5/4/06, [EMAIL PROTECTED]@mgEDV.net <[EMAIL PROTECTED]> wrote:
> >
> > > How do I check/modify ldconfig settings? Would you give me some
> > > examples?
> >
> > ! man ldconfig
> > ldconfig -r
> > ls -l /etc/ld*
> > ls -l /var/run/ld*
> > echo $LD_LIBRARY_PATH
> >
> >
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"
> 

make link with name libgmodule-2.0.so.600 to libgmodule-2.0.so and try
again.
run as root:
prompt# ln -s libgmodule-2.0.so libgmodule-2.0.so.600
-- 
Kalashnikov Ilya <[EMAIL PROTECTED]>
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RE: Shared Library Error

2006-05-04 Thread [EMAIL PROTECTED]@mgEDV.net

> I did "ldconfig -R" and "ldconfig -m /usr/local/lib" but I still get
> the error message.

> So, how would you explicitly do with that if you get:
> [EMAIL PROTECTED] ~]$firefox
> /libexec/ld-elf.so.1: Shared object "libgmodule-2.0.so.600" not found,
> required by "libgtk-x11-2.0.so.600"

if an executable is linked dynamically, it needs loading shared libraries.
ldconfig is a way to define, where and in which order to find and load them.
also have a look on ldd (man ldd).

eg. you can do ldd libgtk-x11-2.0.so.600 in the dir where it resides,
and find out, which files are missing. then check the other library
for correctness and if it's really a shared library (not a symlink
or somethink like that).

try researching it a little bit ;-)

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Shared Library Error

2006-05-04 Thread Soo-Hyun Choi

I did "ldconfig -R" and "ldconfig -m /usr/local/lib" but I still get
the error message.

So, how would you explicitly do with that if you get:
[EMAIL PROTECTED] ~]$firefox
/libexec/ld-elf.so.1: Shared object "libgmodule-2.0.so.600" not found,
required by "libgtk-x11-2.0.so.600"

Thanks,


On 5/4/06, [EMAIL PROTECTED]@mgEDV.net <[EMAIL PROTECTED]> wrote:


> How do I check/modify ldconfig settings? Would you give me some
> examples?

! man ldconfig
ldconfig -r
ls -l /etc/ld*
ls -l /var/run/ld*
echo $LD_LIBRARY_PATH



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RE: Shared Library Error

2006-05-04 Thread [EMAIL PROTECTED]@mgEDV.net

> How do I check/modify ldconfig settings? Would you give me some 
> examples?

! man ldconfig
ldconfig -r
ls -l /etc/ld*
ls -l /var/run/ld*
echo $LD_LIBRARY_PATH

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Shared Library Error

2006-05-04 Thread Soo-Hyun Choi

How do I check/modify ldconfig settings? Would you give me some examples?

Thanks,


On 5/4/06, [EMAIL PROTECTED]@mgEDV.net <[EMAIL PROTECTED]> wrote:


> If I do
> [EMAIL PROTECTED]:~$locate libgmodule-2.0.so.600
>
> then I get
> /usr/local/lib/libgmodule-2.0.so.600
>
> but actually the "libgmodule-2.0.so.600" is not in that directory.

try running ldconfig -R to rescan the directories
and check you ldconfig settings



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RE: Shared Library Error

2006-05-04 Thread [EMAIL PROTECTED]@mgEDV.net

> If I do
> [EMAIL PROTECTED]:~$locate libgmodule-2.0.so.600
> 
> then I get
> /usr/local/lib/libgmodule-2.0.so.600
> 
> but actually the "libgmodule-2.0.so.600" is not in that directory.

try running ldconfig -R to rescan the directories
and check you ldconfig settings

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"