Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: PSX fans will LOVE this

  1. #1
    Join Date
    Mar 2005
    Location
    Bloomington, Indiana
    Beans
    225
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    PSX fans will LOVE this

    if you have tried the emulator called pSX you will know its the best playstation emu for windows but now it may be soon coming to linux

    check this out

    make sure you let pSX Author know how you feel

  2. #2
    Join Date
    Dec 2006
    Location
    Rio, Brasil
    Beans
    Hidden!
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: PSX fans will LOVE this

    Hmm... tought the best was epsxe...
    but I´ll give this pSX a try

  3. #3
    Join Date
    May 2006
    Location
    Israel
    Beans
    1,968

    Re: PSX fans will LOVE this

    I'm waiting for a working PS2 emulator to be ported to Linux

  4. #4
    Join Date
    Mar 2005
    Location
    Bloomington, Indiana
    Beans
    225
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: PSX fans will LOVE this

    Quote Originally Posted by gaspar View Post
    Hmm... tought the best was epsxe...
    but I´ll give this pSX a try
    pSX is aimed at delivering HIGH compatibility and creating a genuine psx experience (ie. no fancy filters) just the basics and standard resolutions but it plays near flawlessly in windows and fairly good in wine so im expecting this to kick ***

  5. #5
    Join Date
    Sep 2006
    Beans
    Hidden!
    Distro
    Ubuntu 6.10 Edgy

    Re: PSX fans will LOVE this

    Quote Originally Posted by MAXDDARK View Post
    I'm waiting for a working PS2 emulator to be ported to Linux
    Well, I'm still waiting for one that works great
    Last edited by rolando2424; January 4th, 2007 at 09:46 PM.

  6. #6
    Join Date
    Jun 2006
    Beans
    122
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Re: PSX fans will LOVE this

    well i have the one that comes with ubuntu 6.10 PCSX and downloaded some plugins, and even i somehow got the bios from the Playstation, the thing is that all my old PSX games are playble and with better graphics than the PlayStation itself i can Pack and post here my .pcsx folder so you can compare. (note i wont post the bios because of legal issues)

  7. #7
    Join Date
    Oct 2006
    Location
    Sweden
    Beans
    7
    Distro
    Ubuntu

    Re: PSX fans will LOVE this

    In case someone wonders, pSX works great with wine! I played Final Fantasy VII using pSX and wine a few months ago. Thumbs up!

    Btw, does anyone know how to make proper backup of Playstation disc's in linux? I can't get my games to rip succesfully in linux. =/

  8. #8
    Join Date
    Sep 2006
    Beans
    Hidden!

    Re: PSX fans will LOVE this

    anders.149,

    This is a script I wrote to rip PSX images, it might work for others as well. You'll need cdrdao installed for it to work. First, you need to do a little setup; namely, which CD drive to use (command you type is bolded, don't really know why sudo access is needed):
    Code:
    $ sudo cdrdao scanbus
    ... snipping useless program output ...
    ATA:1,0,0       TSSTcorp, CD/DVDW SH-S182M, SB02
    We're interested in the first field of the output, ATA:1,0,0. This is the way cdrdao names the devices. You might have more than one device in the output; just use the one that you will rip PSX CDs with.

    Now, the script:
    Code:
    #!/bin/bash
    
    if [[ -z "$1" ]]; then
        echo -e "Usage: `basename $0` <filename>"
        echo -e "Error: No filename specified."
        exit 1
    fi
    
    cdrdao read-cd --device ATA:1,0,0 --driver generic-mmc-raw --read-raw --datafile $1.bin $1.toc
    
    exit 0
    Save this script as 'mkpsximage' in /usr/local/bin and give it execute permission. You'll need sudo access to do this. (Change the bolded portion to whatever drive you want to use.) When you use the script, you will need to specify a base filename to use for the created BIN/TOC files. Say you were ripping Final Fantasy VII, disc one:
    Code:
    $ mkpsximage ff7-d1
    When the script is finished, you should have two files in the current directory, 'ff7-d1.bin' and 'ff7-d1.toc'.

    HTH

    [EDIT]

    Added the bold part.

    [EDIT 2]

    Final line in the script should be 'exit 0', not 'exit 1'.
    Last edited by po0f; April 30th, 2007 at 04:33 AM.

  9. #9
    Join Date
    Jan 2007
    Location
    Canada
    Beans
    11
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: PSX fans will LOVE this

    Thanks a lot for the useful script, po0f. Worked like a charm on my epsxe. ^^
    Last edited by llirium; January 10th, 2007 at 07:32 AM.

  10. #10
    Join Date
    Oct 2006
    Location
    Sweden
    Beans
    7
    Distro
    Ubuntu

    Re: PSX fans will LOVE this

    I finally had the time to try your script po0f and it's wonderful! Now both ePSXe and PCSX run my game's that's made entirely with Linux which feels good. No more Windows for PS1 emulation I hope.

    One problem remains though, I can't get sound to work in either ePSXe or PCSX. I have tried both Peops OSS and ALSA plugins as well as Eternal. The sound stutters. I have tried to increase the sound buffer in Eternal but it doesn't get any better.

    Thanks po0f! =)

    EDIT: Nevermind! pSX WIP for Linux has been released, it works MUCH better than any other playstation emulator for Linux even in it's WIP state! Try it out!

    Get it from the official site:
    http://psxemulator.proboards54.com/i...0069898&page=1
    Last edited by anders.149; February 4th, 2007 at 03:40 PM. Reason: pSX WIP for Linux released

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •