RetroPie forum home
    • Recent
    • Tags
    • Popular
    • Home
    • Docs
    • Register
    • Login
    Please do not post a support request without first reading and following the advice in https://retropie.org.uk/forum/topic/3/read-this-first

    Problems with some PSX roms

    Scheduled Pinned Locked Moved Help and Support
    psx romspsx bios
    25 Posts 7 Posters 7.6k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • V
      VahnXDean
      last edited by

      i even tried to copy the .cue file from the game that is working and edit it to the new game, but even doing this, it isn't working :( any other suggestion?

      mituM 1 Reply Last reply Reply Quote 0
      • mituM
        mitu Global Moderator @VahnXDean
        last edited by

        @vahnxdean What's your .cue file content ? Paste here in a code block.

        1 Reply Last reply Reply Quote 0
        • markyh444M
          markyh444 @VahnXDean
          last edited by

          @vahnxdean how come you're using the Retropie image for Pi 1 and zero? I'd recommend getting the one built for 2/3 to start with so you're sure that isn't affecting things.

          Retropie in a NES - Pi 3 with Mausberry circuit shutdown switch wired to buttons and 8bitdo NesPro30 controller
          Retropie in a Saturn Controller - Pi Zero, GPIO controls using DB9 driver
          Retropie in a PSX - Pi3
          https://markyh444.wordpress.com

          V 1 Reply Last reply Reply Quote 1
          • V
            VahnXDean
            last edited by

            So, i do a backup of my games then format the SD card and install the 2/3 retropie image, is that it?

            markyh444M 1 Reply Last reply Reply Quote 1
            • markyh444M
              markyh444 @VahnXDean
              last edited by

              @vahnxdean I would start with that, yes. At least then you know you're working from the right base build.

              Retropie in a NES - Pi 3 with Mausberry circuit shutdown switch wired to buttons and 8bitdo NesPro30 controller
              Retropie in a Saturn Controller - Pi Zero, GPIO controls using DB9 driver
              Retropie in a PSX - Pi3
              https://markyh444.wordpress.com

              1 Reply Last reply Reply Quote 0
              • V
                VahnXDean
                last edited by

                Ok, i'm doing it right now. Just to check, you have any video showing how to install and config? just for me to make sure i'm doing this the right way

                mituM 1 Reply Last reply Reply Quote 0
                • mituM
                  mitu Global Moderator @VahnXDean
                  last edited by

                  @vahnxdean https://retropie.org.uk/docs/First-Installation/

                  1 Reply Last reply Reply Quote 0
                  • V
                    VahnXDean @markyh444
                    last edited by

                    @markyh444 i'm redoing the tests now and it seems that the image was really the problem. i just need to do some tests with my PSX roms to confirm it. Just one more thing: i was in a hurry to test if the image was the problem, and my PSX roms were taking too much time to be transfered to my notebook while i was doing the backup, so i decided to do a backup of my micro SD card using the Win32diskimager, and then format my card to install the correct image. But now i don't wanna restore the backup in my SD cause i don't wanna mix anything of the previous image with the new one. Is there any way for me to access my backup roms that are in the backup file without the need to restore them in my SD?

                    markyh444M 1 Reply Last reply Reply Quote 0
                    • markyh444M
                      markyh444 @VahnXDean
                      last edited by markyh444

                      @vahnxdean if you restore the SD it'll overwrite the correct image you already have. You might be able to open the IMG file, but you'd need to do this off a Linux platform as the partition with the games and config can't be read in Windows.

                      I've not done it myself, but if you have a Google about there might be a Linux tool to do that.

                      Retropie in a NES - Pi 3 with Mausberry circuit shutdown switch wired to buttons and 8bitdo NesPro30 controller
                      Retropie in a Saturn Controller - Pi Zero, GPIO controls using DB9 driver
                      Retropie in a PSX - Pi3
                      https://markyh444.wordpress.com

                      1 Reply Last reply Reply Quote 0
                      • V
                        VahnXDean
                        last edited by

                        @markyh444 i will try to find this tool, i just need to see which roms are there, so i can download them again.

                        what i should search? tool .img linux on windows?

                        markyh444M chipsnblipC 2 Replies Last reply Reply Quote 0
                        • markyh444M
                          markyh444 @VahnXDean
                          last edited by

                          @vahnxdean I've got no idea.

                          Retropie in a NES - Pi 3 with Mausberry circuit shutdown switch wired to buttons and 8bitdo NesPro30 controller
                          Retropie in a Saturn Controller - Pi Zero, GPIO controls using DB9 driver
                          Retropie in a PSX - Pi3
                          https://markyh444.wordpress.com

                          1 Reply Last reply Reply Quote 0
                          • SanoS
                            Sano
                            last edited by

                            Best option is to use a linux live distro.
                            Then use fdisk -l to spot the offsets of the partitions and mount it with correct options (see here : https://raspberrypi.stackexchange.com/questions/13137/how-can-i-mount-a-raspberry-pi-linux-distro-image), or use kpartx.

                            1 Reply Last reply Reply Quote 0
                            • chipsnblipC
                              chipsnblip @VahnXDean
                              last edited by

                              @vahnxdean or if you are willing to set up a linux-based virtual machine, you can mount the image partitions from a terminal like this for example:

                              display partitions on the image:

                              sudo fdisk -l /path/to/image.img
                              

                              multiply the block size (eg. 512 bytes) by the starting sector (eg. 124928) and you have your offset:

                              expr 512 \* 124928
                              

                              make temp directory to mount the partition:

                              sudo mkdir /mnt/tmp
                              

                              finally mount the partition:

                              sudo mount -o loop,offset=63963136 /path/to/image.img  /mnt/tmp
                              

                              when you create the virtual hard disk, be sure it's large enough to hold the OS, the .img (unless it's stored in a shared folder on the host OS), and the mounted partition(s). a live distro as mentioned above is a good option.

                              BuZzB 1 Reply Last reply Reply Quote 1
                              • SanoS
                                Sano
                                last edited by

                                Busted :D
                                But you definitely deserve an upvote here :)

                                1 Reply Last reply Reply Quote 0
                                • BuZzB
                                  BuZz administrators @chipsnblip
                                  last edited by BuZz

                                  @chipsnblip You can make this a little simpler without having to work out offsets by using kpartx

                                  eg

                                  kpartx -a /path/to/image
                                  

                                  more info: http://www.forensicswiki.org/wiki/Mounting_Disk_Images#kpartx

                                  To help us help you - please make sure you read the sticky topics before posting - https://retropie.org.uk/forum/topic/3/read-this-first

                                  chipsnblipC 1 Reply Last reply Reply Quote 2
                                  • SanoS
                                    Sano
                                    last edited by

                                    Aaaaahhh.
                                    After a few months not posting here, I realize I really missed this feeling of being invisible sometimes :)
                                    Just joking guys, nice to post here again !

                                    Back to the topic, I sometimes do a ls -R /home/pi/RetroPie/roms/ > roms.txtin order to have a listing of all roms in my setup, in case of emergency.

                                    1 Reply Last reply Reply Quote 1
                                    • chipsnblipC
                                      chipsnblip @BuZz
                                      last edited by

                                      @buzz thank, never knew about that. i found kpartx in the package 'multipath-tools' in the AUR

                                      1 Reply Last reply Reply Quote 1
                                      • BuZzB
                                        BuZz administrators
                                        last edited by

                                        @chipsnblip It's a useful tool. I only discovered it last year or so, and much simplified my scripts for building images etc.

                                        To help us help you - please make sure you read the sticky topics before posting - https://retropie.org.uk/forum/topic/3/read-this-first

                                        1 Reply Last reply Reply Quote 1
                                        • V
                                          VahnXDean
                                          last edited by

                                          Man, i know nothing about Linux, so i think i will just leave this backup away and download my roms, there aren't many roms anyway, so no problem with that.
                                          Would like to thank everyone, my retropie is running perfectly now:
                                          @mitu
                                          @jonnykesh
                                          @markyh444
                                          @Sano
                                          @chipsnblip
                                          @BuZz

                                          Dont know what is more awesome, raspberry/retropie itself or its community :)

                                          1 Reply Last reply Reply Quote 2
                                          • First post
                                            Last post

                                          Contributions to the project are always appreciated, so if you would like to support us with a donation you can do so here.

                                          Hosting provided by Mythic-Beasts. See the Hosting Information page for more information.