Thursday, May 2, 2024
 Popular · Latest · Hot · Upcoming
4
rated 0 times [  4] [ 0]  / answers: 1 / hits: 18371  / 3 Years ago, tue, june 15, 2021, 8:20:12

So I wanted to give ePsxe 1.9 a go on Ubuntu (of course, I legally own both the console and games I am planning on running). I started out by downloading ePSXe v1.9.0 for Linux from the official web site. I then extracted the binary and attempted to run it. This is what happened:



error while loading shared libraries: libgtk-x11-2.0.so.0: cannot open shared object file: No such file or directory


What is going on here? Can anyone help me with this?


More From » 13.10

 Answers
0

It looks like you need to find the package that contains the file libgtk-x11-2.0.so.0. If you take a look at this answer and run the following commands:



sudo apt-get install apt-file # Installs apt-file
sudo apt-file update # Tells apt-file to update its cache
apt-file search libgtk-x11-2.0.so.0 # Has apt-file find the package with your file


Then you can see that the package libgtk2.0-0 contains that particular library. With that, all you should need to do is install libgtk2.0-0:



sudo apt-get install libgtk2.0-0


And you should be set!


[#28603] Wednesday, June 16, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
rcraftemur

Total Points: 118
Total Questions: 119
Total Answers: 144

Location: Turks and Caicos Islands
Member since Sun, Mar 7, 2021
3 Years ago
;