error while loading shared libraries: libgtkglextmm-x11-1.2.so.0
Linux - SoftwareThis forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
Actually I don't see that library in the list you've posted. Maybe you have to install the gtkglextmm package (opensuse) or libgtkglextmm-x11-dev (ubuntu). The method suggested by bathory is correct to include a non-standard place in the search path, but if you install the library from the binary package of your distribution, it is not necessary.
just to make sure, does this library work with 64 bit ubuntu?
the application is a proyect made in kdevelop, i just run the binary on Release folder.
Code:
neoideo@neoideo-desktop:~/Desktop/TreeGrowthSimulator/bin/Release$ ./treegrowthsimulator
./treegrowthsimulator: error while loading shared libraries: libgtkglextmm-x11-1.2.so.0: cannot open shared object file: No such file or directory
UPDATE:
i tried moving the libraries into /usr/lib32 folder,
and then thid this
Code:
neoideo@neoideo-desktop:~/Desktop/TreeGrowthSimulator/bin/Release$ sudo ldconfig
[sudo] password for neoideo:
/sbin/ldconfig.real: /usr/lib32/libgtkglextmm-x11-1.2.so.0 is not a symbolic link
this is a 64-bit library, but it looks like the application you're trying to run is 32-bit. If this is the case, it needs the 32-bit version of the library, so that you have to install it. Don't worry about installing two different architectures of the same library: the system should take care of it by placing them in different directories (lib and lib32) and updating the library cache in the proper way (you should see something like
this is a 64-bit library, but it looks like the application you're trying to run is 32-bit. If this is the case, it needs the 32-bit version of the library, so that you have to install it. Don't worry about installing two different architectures of the same library: the system should take care of it by placing them in different directories (lib and lib32) and updating the library cache in the proper way (you should see something like
now it works very well!
getlibs downloaded the correct libs
very useful tool
thanks for all the help you provided
i also learned a lot through the way
this topic can help other people with similar problems.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.