I have to install an agent software for my college intranet.
They provide this .bin file as the installer file.
I type ./file.bin
after going to the right directory.
It says
error while loading shared libraries: libglib-2.0.so.0: cannot open shared object file: No such file or directory
What is the problem?
I have already done
sudo chmod +x file.bin
edit:
/lib/x86_64-linux-gnu/libglib-2.0.so.0
/lib/x86_64-linux-gnu/libglib-2.0.so.0.3200.3
/usr/share/gdb/gdb/auto-load/libglib-2.0.so.0.3200.3-gdb.py
output of
sudo updatedb && locate libglib-2.0.so.0
sudo updatedb && locate libglib-2.0.so.0
? – ish Aug 10 '12 at 06:28sudo ./file.bin
if you trust it; if that doesn't work, a link to the actual bin file would be the best way to troubleshoot this :) – ish Aug 10 '12 at 07:03sudo apt-get install ia32-libs
and try again. – ish Aug 30 '12 at 23:49