Lillesort131: Sometimes I've noticed that GOG games does not run from their script, but if you manually run the executable, it runs fine. To run it in this way, use
cd "~/GOG Games/<game name>/game" to change into the game directory, then you can run the game's executable by simply using
./gamename assuming the executable is called “gamename”.
Furthermore, since you are on ubuntu, if you have navigated to some folder in the graphical file manager, you can right-click on a folder (or on the background) and select “Open in Terminal”, which will open a terminal which has automatically navigated to that folder (saves you from using cd).
Another trick is that instead of using “chmod +x something.sh; ./something.sh”, you can merely use
bash something.sh
which will run the file, which is nice for one-offs such as running installers.
GreywolfLord: I've tried this with several games and I keep getting the same message. It appears I need to download some files, but unsure which ones and where
while loading shared libraries: libopenal.so.1: cannot open shared object file: No such file or directory
From what I've read on the internet this is an issue with running 32bit in 64 bit linux...though (For example with Baldurs Gate) I ran the BaldursGate64 as well in my attempt to get it to work. I think there are some libraries i need to download (not sure how to install them yet).
I am wondering if I get Wine if that makes it easier to use these games in play...though regarding Wine...
I've read up on Lutris and unsure which is better, Wine or Lutris for GOG games...
Right, you are probably missing some libraries. Just run
sudo apt install libopenal1 libopenal1:i386 and you should be set. To install wine, you probably want to run the newest development version, as that runs the most programs. To install it, use:
sudo dpkg --add-architecture i386
wget -O - https
://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add -
sudo add-apt-repository 'deb https
://dl.winehq.org/wine-builds/ubuntu/ bionic main'
wget -O- https
://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_10/Release.key | sudo apt-key add -
sudo apt update
sudo apt install --install-recommends winehq-devel
This downloads the signing key (used to prevent both accidental and malicious corruption of packages), sets up wine's repositories (and dependencies), and finally installs wine. After this, you can just double-click any Windows executable, and they (ideally) run as on Windows.
If you want to play graphically intensive games, then you can set up
DXVK, but this requires that you update your graphics driver first, and not knowing your particular hardware I can't really give any instructions for that.