Thanks again Macpod that worked!
I wanted to post some additional info here that might help somebody trying to run the openlase demo. It might be obvious, but just in case. It's about fixing a symbolic link if you have that. For these examples:
http://www.pouet.net/prod.php?which=55697https://www.scene.org/file.php?file=/parties/2010/euskal18/wild/marcan_pope-lase.zipyou will get a zip file with a folder called wild_lase. Putting it in the openlase folder worked for me. Inside wild_lase is an executable called lase_demo. The first time you try to run it you might get an error ending in:
“libmodplug.so.0: cannot open shared object file: No such file or directoryâ€
Which means that there is a symbolic link that needs to be made to fix this. Here's what worked for me, but as always it's a good idea to back up your settings first.
If in the file browser you go to the filesystem then usr then lib, you can scroll down until you see a file (or more) that begins with libmodplug. Find the libmodplug that has the highest number prefix at the end, for example: libmodplug.so.1. I'm not sure exactly how this works, but we're going to create a symbolic link so that when the computer tries to use libmodplug.so.0, it will use libmodplug.so.1, by making libmodplug.so.0 point to that.
Go to back to the last folder, and right click on lib and select to open in terminal. From here run,
sudo ln -sf libmodplug.so.1 libmodplug.so.0
except,
if you have a libmodplug.so. with a prefix greater than that in lib probably update libmodplug.so.1 to match that instead, but keep libmodplug.so.0
Restart the openlace applications and it should work!