Results 1 to 4 of 4

Thread: need cd iso plugin for pcsx (playstation emulator)

  1. #1
    Join Date
    Mar 2007
    Beans
    283
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Cool need cd iso plugin for pcsx (playstation emulator)

    Does anyone know were I can get iso plugin for my playstation emulator. I have cd-r moddy but it does not play iso 9669 (or something like that) Can someone tell me how to turn my isos into a bin or can someone tell me where to get a iso or cd drive plugin for my playstation emulator.

    Thanks in advanve

  2. #2
    Join Date
    Mar 2007
    Beans
    283
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Talking Re: need cd iso plugin for pcsx (playstation emulator)

    bump

  3. #3
    Join Date
    Aug 2006
    Location
    tuesday
    Beans
    6,502
    Distro
    Kubuntu Development Release

    Re: need cd iso plugin for pcsx (playstation emulator)

    Quote Originally Posted by Masterj15 View Post
    Does anyone know were I can get iso plugin for my playstation emulator. I have cd-r moddy but it does not play iso 9669 (or something like that) Can someone tell me how to turn my isos into a bin or can someone tell me where to get a iso or cd drive plugin for my playstation emulator.

    Thanks in advanve
    Here's an easy script I threw together to rip psx cds to bin/toc files.

    Open a terminal and type:

    Code:
    sudo pico /usr/bin/psxrip
    Paste the following code:

    Code:
    #! /bin/bash
    if [ "$1" ]; then
    cdrdao read-cd --read-raw --datafile $1 --device /dev/hdd --driver generic-mmc-raw $2;
    else
    echo ________________________________________
    echo ::: Usage - psxrip file.bin file.toc :::
    echo
    fi
    Hit ctrl+o to save and then ctrl+x to close pico.

    It's not by any means perfect, but it works.

    You'll need cdrdao installed for this script to work:

    Code:
    sudo apt-get install cdrdao
    Obviously per my echoed text in the script to rip a cd you'll need to run

    Code:
    psxrip filename.bin filename.toc
    You'll also need to chmod +x the script file for it to run.

    Code:
    sudo chmod +x /usr/bin/psxrip
    Enjoy,


    --Aaron
    Last edited by hikaricore; March 28th, 2007 at 11:22 PM.

  4. #4
    Join Date
    Mar 2007
    Beans
    283
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Talking Re: need cd iso plugin for pcsx (playstation emulator)

    awsome,
    thank you

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
  •