When I run ./df I get this error:
./libs/Dwarf_Fortress: error while loading shared libraries: libSDL_ttf-2.0.so.0: cannot open shared object file: No such file or directory
So I tried to install that lib by running:
sudo apt-get install libsdl-ttf2.0-0:i386
But it is already installed:
libsdl-ttf2.0-0:i386 is already the newest version
I then searched around and ran this:
$ ldd ~/df_linux/libs/Dwarf_Fortress
And got a ton of libraries and I think I found the problem, it is given out by this line:
libSDL_ttf-2.0.so.0 => not found
I can't find any more information, I'm lost. How should I proceed?
libSDL_ttf_2.0.so
. In the directory, create a symbolic link calledlibSDL_ttf-2.0.so.0
to that file. – Jos Aug 23 '16 at 12:20lib
file, usingsudo ln -s [target file] libSDL_ttf-2.0.so.0
. I don't suppose there is any harm in trying them all one by one. – Jos Aug 23 '16 at 13:08libSDL_ttf-2.0.so.0
. No such file exists at this moment. When you create a link with that name, linked to a file that does exist, DF will use that. – Jos Aug 23 '16 at 13:26