SHARED LIBRARY ARCH LINUX

Moderator: Telldus

Post Reply
spandex
Posts: 3
Joined: Fri Mar 17, 2023 9:45 am

SHARED LIBRARY ARCH LINUX

Post by spandex »

tdtool
tdtool: error while loading shared libraries: libtelldus-core.so.2: cannot open shared object file: No such file or directory


Can someone explain how to fix this ?
micke.prag
Site Admin
Posts: 2243
Joined: Fri Mar 17, 2023 9:45 am
Location: Lund
Contact:

Re: SHARED LIBRARY ARCH LINUX

Post by micke.prag »

Probably by running:

Code: Select all

$ sudo ldconfig
Micke Prag
Software
Telldus Technologies
spandex
Posts: 3
Joined: Fri Mar 17, 2023 9:45 am

Re: SHARED LIBRARY ARCH LINUX

Post by spandex »

i tried that several times.. does not work.
micke.prag
Site Admin
Posts: 2243
Joined: Fri Mar 17, 2023 9:45 am
Location: Lund
Contact:

Re: SHARED LIBRARY ARCH LINUX

Post by micke.prag »

Do you have the file libtelldus-core.so.2? If you do, where is it?
Micke Prag
Software
Telldus Technologies
spandex
Posts: 3
Joined: Fri Mar 17, 2023 9:45 am

Re: SHARED LIBRARY ARCH LINUX

Post by spandex »

SOLVED

Everything was installed...

Just needed


export LD_LIBRARY_PATH=/usr/local/lib
daru
Posts: 5
Joined: Fri Mar 17, 2023 9:45 am

Re: SHARED LIBRARY ARCH LINUX

Post by daru »

spandex wrote:SOLVED

Everything was installed...

Just needed


export LD_LIBRARY_PATH=/usr/local/lib
Yeah. Works for me too. But not after reboot. Howto make this permanent?
micke.prag
Site Admin
Posts: 2243
Joined: Fri Mar 17, 2023 9:45 am
Location: Lund
Contact:

Re: SHARED LIBRARY ARCH LINUX

Post by micke.prag »

Add the path in /etc/ld.so.conf and run

Code: Select all

sudo ldconfig
Micke Prag
Software
Telldus Technologies
daru
Posts: 5
Joined: Fri Mar 17, 2023 9:45 am

Re: SHARED LIBRARY ARCH LINUX

Post by daru »

micke.prag wrote:Add the path in /etc/ld.so.conf and run

Code: Select all

sudo ldconfig
Thanks. Found that and other ways to do it but was unsure what the preferred way was.
Post Reply