Posted January 10, 2023
Hi everyone
If you are getting the error “No usable version of libssl was found” when attempting to start the game, the easiest solution is to go to the game’s main directory and edit the start.sh script to add the line
export LD_LIBRARY_PATH="Path to the game folder"
at the top below the comments and above the rest of the script. For example the top of mine looks like this
#!/bin/bash
# GOG.com (www.gog.com)
# Game
export LD_LIBRARY_PATH="/home/my_user_name/GOG Games/CARRION"
Next, you will want to add a usable libssl library to that directory. Since I already had to do this once to get Baldur’s Gate to run, I used the same version I used there and it worked.
libssl.so.1.0.0
libcrypto.so.1.0.0
These are older versions, but since I don’t play online, I don’t care. If you do, you could try newer versions, but I haven't tested it.
You can download them at the following link or dig around in the repositories of your distro.
https://downloads.dotslashplay.it/resources/libssl/
I don’t know why the developers or gog don’t include these libraries to make it less prone to these types of errors. This type of problem comes up again and again.
If you are getting the error “No usable version of libssl was found” when attempting to start the game, the easiest solution is to go to the game’s main directory and edit the start.sh script to add the line
export LD_LIBRARY_PATH="Path to the game folder"
at the top below the comments and above the rest of the script. For example the top of mine looks like this
#!/bin/bash
# GOG.com (www.gog.com)
# Game
export LD_LIBRARY_PATH="/home/my_user_name/GOG Games/CARRION"
Next, you will want to add a usable libssl library to that directory. Since I already had to do this once to get Baldur’s Gate to run, I used the same version I used there and it worked.
libssl.so.1.0.0
libcrypto.so.1.0.0
These are older versions, but since I don’t play online, I don’t care. If you do, you could try newer versions, but I haven't tested it.
You can download them at the following link or dig around in the repositories of your distro.
https://downloads.dotslashplay.it/resources/libssl/
I don’t know why the developers or gog don’t include these libraries to make it less prone to these types of errors. This type of problem comes up again and again.