9

PCSX2(playstation 2 emulator) won't work under Ubuntu 11.10 x64. It worked when I was running Ubuntu 11.10 x86.

When I downloaded the pcsx2-0.9.8-r4594-linux.tar.gz I extracted it in the home directory and run the launch_pcsx2_linux.sh file, it closed immediately. When I open GNOME-terminal and typed in: ./launch_pcsx2_linux.sh I got the following error:

./pcsx2: error while loading shared libraries: libwx_baseu-2.8.so.0: cannot open shared object file: No such file or directory

When I type sudo apt-get install libwxbase2.8-0 it says that it is already installed.

blade19899
  • 26,994

3 Answers3

11

A big plus here is, there is a Linux version of PCSX2, so we don't need to use WINE!

Installation

There are 2 ways to install pcsx2 in Ubuntu.

Manually

One just download it from the pcsx2 site, extract it in your home folder, and run the launch_pcsx2_linux.sh(X86 only). here is the pcsx2.desktop file save it in /usr/share/applications/ or in your /home/your username/.local/share/applications/. Edit the file, where it says your username change it to your actual username, and the actual path to the binary.

PPA

If that is to much of a hassle for you, The Gregory Hainaut PPA, is the official PCSX2 PPA, which supports x86 and x64 bit versions of Ubuntu. Due note that the package maintainers have stated:

PPA doesn't allow to upload package on unsupported Ubuntu. In short it only remains LTS and latest version.

Copy past the following in your gnome-terminal

sudo add-apt-repository ppa:gregory-hainaut/pcsx2.official.ppa
sudo apt-get update
sudo apt-get install pcsx2-unstable

If the PCSX2 doesn't work for you, try the pcsx2-unstable package. One thing you need to do, when configuring PCSX2, is add BIOS files. You will get a window that asks for these BIOS files. You will need to provide legal BIOS“es yourself!

Warning without BIOS'es you can't play the games.


This video shows PCSX2 in action, in VMware, showing off the x86 version. I didn't start the game cause it didn't work well with my screen-recorder.

PCSX2 in Ubuntu(x86/x64)

pcsx2

Source

blade19899
  • 26,994
3

Ubuntu 17.04 official wiki instructions

The official wiki has installation instructions: https://github.com/PCSX2/pcsx2/wiki/Installing-on-Linux/d029dc1d29c94be3b991507069cf9ee1e82f589a#ubuntu-ppa

sudo dpkg --add-architecture i386
sudo add-apt-repository ppa:gregory-hainaut/pcsx2.official.ppa
sudo apt-get update
sudo apt-get install pcsx2
PCSX2 

Note that the executable is horribly named PCSX2 in all caps.

Notably, since the packages are 32-bit only, you first need the pesky:

sudo dpkg --add-architecture i386

or else you get dependency problems with libjack-0.116.

Next, during the first run, you need to extract the BIOS to:

~/.config/PCSX2/bios

and select the one that matches your ISO's region.

Finally, you will also need:

0

Ubuntu 24.04 has a new PPA repository for PCSX2. The PPA "gregory-hainaut" does not appear to be maintained and there is not a release available for Ubuntu Noble. The nightly build is available now and I do recommend the nightly over the stable version.

Command line installation instructions:

sudo add-apt-repository ppa:pcsx2-team/pcsx2-daily
sudo apt update
sudo apt install pcsx2-unstable

You can launch from Ubuntu's standard app list or from the command line. The binary name isn't capitalized anymore!

Command line to run:

pcsx2-qt

Upon first launch you'll need to provide PS2 BIOS files per-usual.


If you really want the stable version then a flatpak is available:

flatpak install net.pcsx2.PCSX2

with full instructions here https://pcsx2.net/docs/setup/linux/

Maave
  • 1