Difference between revisions of "Emulator:EPSXe"

From Wah!ki
Jump to navigation Jump to search
Line 53: Line 53:
 
${HOME}/epsxe/epsxe -nogui -loadbin "$1"
 
${HOME}/epsxe/epsxe -nogui -loadbin "$1"
 
</pre>
 
</pre>
 +
 +
[[Category:Emulator]]

Revision as of 12:30, 16 April 2011

About

Project Homepage

Installation

  1. Use the Installer for ePSXe 1.52-alpha
  2. Download the i386 or common debs for the following:
    THIS INSTRUCTION NEEDS TO BE REVIEWED AGAINST NEWER VERSIONS OF UBUNTU, THE JAUNTY PACKAGES LISTED BELOW HAVE BEEN REMOVED FROM PACKAGES.UBUNTU.COM
http://packages.ubuntu.com/en/jaunty/libgtk1.2-common
http://packages.ubuntu.com/en/jaunty/libglib1.2ldbl
http://packages.ubuntu.com/en/jaunty/libgtk1.2
  1. Install the deb packages
    32bit: dpkg -i <filename>
    64bit: dpkg -i --force-architecture <filename>

Configuration

Platform Version Device Exec Type commandline_format
Linux v1.5.0-alpha Disc Image epsxe D -nogui -loadbin "[rompath]/[name].[romext]"
Linux v1.5.0-alpha CD-ROM epsxe D N/A

Troubleshooting

PROBLEM: Error opening terminal: unknown.

The solution to this issue is to use a loader script to export TERM before loading epsxe. Wah!Cade is then configured to use the loader in place of the normal method.

#!/bin/bash

HOME=/home/`whoami`
export TERM=ansi

${HOME}/epsxe/epsxe -nogui -loadbin "$1"