I downloaded the game pacapong for Linux and tried to run the executable, which results in the error:
$ ./runner
./runner: error while loading shared libraries: libopenal.so.1:
cannot open shared object file: No such file or directory
Obviously, there is the necessity of loading libopenal.so.1
:
$ objdump -p ./runner |grep libopenal.so.1
NEEDED libopenal.so.1
There is libopenal.so.1
lying in /usr/lib/x86_64-linux-gnu
and I can do:
$ ldd libopenal.so.1
linux-vdso.so.1 => (0x00007fffcdbbb000)
...
I won't run this executable (./runner) as root (just in case this problem could be related to insufficient rights, what I'm not assuming).
So, what could I try else?
There you think to know everything about the system, well and actually you know about it, but you don't think of it... ;)
– de-facto Apr 14 '15 at 14:05