Hi,
I have DLed the "military" mod via
this link. When I try to start "glestadv" I get this error message:
user@ubuntu:/usr/games/military$ sudo ./glestadv
./glestadv: error while loading shared libraries: liblua5.1.so.0: cannot open shared object file: No such file or directory
The thing is that I do have this library, but it has a slightly different name (see last two lines):
user@ubuntu:/usr/lib$ ls -al liblua*
lrwxrwxrwx 1 root root 22 2011-06-12 00:09 liblua5.1-atk.so.0 -> liblua5.1-atk.so.0.0.0
-rw-r--r-- 1 root root 22736 2011-06-12 00:09 liblua5.1-atk.so.0.0.0
lrwxrwxrwx 1 root root 24 2011-06-12 00:09 liblua5.1-cairo.so.0 -> liblua5.1-cairo.so.0.0.0
-rw-r--r-- 1 root root 14544 2011-06-12 00:09 liblua5.1-cairo.so.0.0.0
lrwxrwxrwx 1 root root 24 2011-06-12 00:09 liblua5.1-gnome.so.0 -> liblua5.1-gnome.so.0.0.0
-rw-r--r-- 1 root root 101992 2011-06-12 00:09 liblua5.1-gnome.so.0.0.0
Then I added a softlink from the different filename to the missing "liblua5.1.so.0" like this (see last line for result), but the same error occurs:
user@ubuntu:/usr/lib$ sudo ln -s liblua5.1-gnome.so.0 liblua5.1.so.0
user@ubuntu:/usr/lib$ ls -al liblua5.1*
lrwxrwxrwx 1 root root 22 2011-06-12 00:09 liblua5.1-atk.so.0 -> liblua5.1-atk.so.0.0.0
-rw-r--r-- 1 root root 22736 2011-06-12 00:09 liblua5.1-atk.so.0.0.0
lrwxrwxrwx 1 root root 24 2011-06-12 00:09 liblua5.1-cairo.so.0 -> liblua5.1-cairo.so.0.0.0
-rw-r--r-- 1 root root 14544 2011-06-12 00:09 liblua5.1-cairo.so.0.0.0
lrwxrwxrwx 1 root root 24 2011-06-12 00:09 liblua5.1-gnome.so.0 -> liblua5.1-gnome.so.0.0.0
-rw-r--r-- 1 root root 101992 2011-06-12 00:09 liblua5.1-gnome.so.0.0.0
lrwxrwxrwx 1 root root 20 2011-11-13 21:26 liblua5.1.so.0 -> liblua5.1-gnome.so.0
Any ideas how I can resolve this? Thanks for your help.