Ubuntu – Gaming: Ravensword libxcursor1 error

14.04gamesxubuntu

Xubuntu 14.04, 64 bit, I paid for a humble bundle package and got Ravensword, downloaded the Linux edition when I run ./rs2.x86 I get

./rs2.x86 ./rs2.x86: error while loading shared libraries:
libXcursor.so.1: cannot open shared object file: No such file or
directory

I run

▶ sudo apt-get install libxcursor1
Reading package lists... Done
Building dependency tree       
Reading state information... Done
libxcursor1 is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

so

locate libxcursor1 
/usr/share/doc/libxcursor1
/usr/share/doc/libxcursor1/changelog.Debian.gz
/usr/share/doc/libxcursor1/copyright
/var/lib/dpkg/info/libxcursor1:amd64.list
/var/lib/dpkg/info/libxcursor1:amd64.md5sums
/var/lib/dpkg/info/libxcursor1:amd64.postinst
/var/lib/dpkg/info/libxcursor1:amd64.postrm
/var/lib/dpkg/info/libxcursor1:amd64.shlibs
/var/lib/dpkg/info/libxcursor1:i386.list
/var/lib/dpkg/info/libxcursor1:i386.postrm

I tried reinstalling that library, I tried installing all of these

enter image description here

nothing worked.

UPDATE

after sudo apt-get install libxcursor1:i386

I get

▶ ./rs2.x86                                                     
Set current directory to /home/elie/Games/Ravensword_linux
Found path: /home/elie/Games/Ravensword_linux/rs2.x86
Mono path[0] = '/home/elie/Games/Ravensword_linux/rs2_Data/Managed'
Mono path[1] = '/home/elie/Games/Ravensword_linux/rs2_Data/Mono'
Mono config path = '/home/elie/Games/Ravensword_linux/rs2_Data/Mono/etc'
Creating user config folder: /home/elie/.config/unity3d
PlayerPrefs - Creating folder: /home/elie/.config/unity3d/Crescent Moon Games LLC
PlayerPrefs - Creating folder: /home/elie/.config/unity3d/Crescent Moon Games LLC/Ravensword2
[1]    14591 abort (core dumped)  ./rs2.x86

Best Answer

Try:

sudo apt-get install libxcursor1:i386

(this will install 32-bit library)

Related Question