Getting an error when I try to run the game on Linux Ubuntu 20.04.1 LTS
issueid=6641 10-19-2020 09:21 AM
Junior Member
Number of reported issues by Batcat: 1
Getting an error when I try to run the game on Linux Ubuntu 20.04.1 LTS
Getting a symbol lookup error when I try to run it via the terminal

I downloaded the game, extracted it, installed the different libraries (I'm not sure what the technically term is) and then hit this error. The specific error message I'm getting is this

Code:
<2020-10-19 09:16:39> INFO  : Creating background process
./adom: symbol lookup error: /usr/lib/x86_64-linux-gnu/libSDL2_image-2.0.so.0: undefined symbol: SDL_RWseek
Issue Details
Issue Number 6641
Project ADOM (Ancient Domains Of Mystery)
Category Linux
Status Unconfirmed
Priority 4
Affected Version ADOM 3.3.3
Fixed Version (none)
Milestone (none)
Users able to reproduce bug 1
Users unable to reproduce bug 0
Assigned Users (none)
Tags (none)




02-11-2021 09:38 AM
Junior Member
I solved this by creating a script to launch the game:

#!/bin/sh
export LD_LIBRARY_PATH="/path/to/adom/lib/"
exec /path/to/adom/adom
I also got an error "while loading shared libraries: libfluidsynth.so.1" so I just:

ln -s /usr/lib/x86_64-linux-gnu/libfluidsynth.so /path/to/adom/lib/libfluidsynth.so.1
You have to change above "/path/to/" to your actual system paths.

+ Reply