[SOLVED] Not all of my roms are uploading onto the SD card

Having trouble with your GBZ build? Ask your questions here!
User avatar
Richb77
Posts: 54
Joined: Sun Jul 23, 2017 6:17 pm
Location: Bird Mountain, Hessen, Germany
Has thanked: 7 times
Been thanked: 5 times

[SOLVED] Not all of my roms are uploading onto the SD card

Post by Richb77 » Thu Oct 26, 2017 7:19 am

Hi all.

So i have my first dry run and i go to upload some Roms.

I clean format a 16Gb Sandisk USB stick to FAT32. Plug it into the USB socket linked to the Pi zero. It creates the "Roms" folder.

I move the USB to my PC and copy over the Roms i have to their respective folder. I move it back to the GBZ and reboot where i get a list of the consoles i have games for.

I uploaded Mame, GB, GBC, GBA, SNES, megadrive and Atari Lynx. I ONLY get Mame GB, GBC, GBA and Lynx show up. No Snes and no Megadrive.

Anyone know why?
Last edited by Richb77 on Fri Nov 17, 2017 8:01 am, edited 1 time in total.

User avatar
YaYa
Posts: 1719
Joined: Mon Jun 26, 2017 12:42 pm
Location: brittany - France
Has thanked: 871 times
Been thanked: 689 times
Contact:

Re: Not all of my roms are uploading onto the SD card

Post by YaYa » Thu Oct 26, 2017 1:20 pm

yes, you may take a look at the extensions ES is waiting for that specific system.

edit the file /opt/retropie/configs/all/emulationstation/es_systems.cfg and for each system, you will find accepted extensions
just add wht you need

Code: Select all

<system>
    <name>nes</name>
    <fullname>Nintendo Entertainment System</fullname>
    <path>/home/pi/RetroPie/roms/nes</path>
    <extension>.nes .zip .NES .ZIP</extension>
    <command>/opt/retropie/supplementary/runcommand/runcommand.sh 0 _SYS_ nes %ROM%</command>
    <platform>nes</platform>
    <theme>nes</theme>
</system>
for example, NES is accepting by default .nes .zip etc...

this is case sensitive so for zip add .zip and .ZIP
Follow me on instagram Image

J-Malice
Posts: 55
Joined: Fri Jun 02, 2017 2:40 pm
Has thanked: 33 times
Been thanked: 8 times

Re: Not all of my roms are uploading onto the SD card

Post by J-Malice » Sat Oct 28, 2017 11:25 am

So wait, I can zip each rom individually and put them in like that to save space? And the system will use them?

User avatar
YaYa
Posts: 1719
Joined: Mon Jun 26, 2017 12:42 pm
Location: brittany - France
Has thanked: 871 times
Been thanked: 689 times
Contact:

Re: Not all of my roms are uploading onto the SD card

Post by YaYa » Sat Oct 28, 2017 11:42 am

J-Malice wrote:
Sat Oct 28, 2017 11:25 am
So wait, I can zip each rom individually and put them in like that to save space? And the system will use them?
of course :D better to 7z than zip, saves more space
Follow me on instagram Image

J-Malice
Posts: 55
Joined: Fri Jun 02, 2017 2:40 pm
Has thanked: 33 times
Been thanked: 8 times

Re: Not all of my roms are uploading onto the SD card

Post by J-Malice » Sun Oct 29, 2017 12:33 pm

YaYa wrote:
Sat Oct 28, 2017 11:42 am
J-Malice wrote:
Sat Oct 28, 2017 11:25 am
So wait, I can zip each rom individually and put them in like that to save space? And the system will use them?
of course :D better to 7z than zip, saves more space
Oh always use 7z, I just use zip as verb. Wow, I wish I had known before putting my mintypi together, would have saved space on the SD card.

As for OP, did you make sure the software did the expand file system thing before you moved games over?

User avatar
YaYa
Posts: 1719
Joined: Mon Jun 26, 2017 12:42 pm
Location: brittany - France
Has thanked: 871 times
Been thanked: 689 times
Contact:

Re: Not all of my roms are uploading onto the SD card

Post by YaYa » Sun Oct 29, 2017 12:38 pm

yes i power the pi first the first time and let it complete the expand, then i'm making a whole update, upgrade, optimization, and only then, i transfer roms and start organizing.
I have written a big guide to optimization, follow the link on my signature ;)
Follow me on instagram Image

User avatar
Richb77
Posts: 54
Joined: Sun Jul 23, 2017 6:17 pm
Location: Bird Mountain, Hessen, Germany
Has thanked: 7 times
Been thanked: 5 times

Re: Not all of my roms are uploading onto the SD card

Post by Richb77 » Wed Nov 01, 2017 3:01 am

YaYa wrote:
Thu Oct 26, 2017 1:20 pm
yes, you may take a look at the extensions ES is waiting for that specific system.

edit the file /opt/retropie/configs/all/emulationstation/es_systems.cfg and for each system, you will find accepted extensions
just add wht you need

Code: Select all

<system>
    <name>nes</name>
    <fullname>Nintendo Entertainment System</fullname>
    <path>/home/pi/RetroPie/roms/nes</path>
    <extension>.nes .zip .NES .ZIP</extension>
    <command>/opt/retropie/supplementary/runcommand/runcommand.sh 0 _SYS_ nes %ROM%</command>
    <platform>nes</platform>
    <theme>nes</theme>
</system>
for example, NES is accepting by default .nes .zip etc...

this is case sensitive so for zip add .zip and .ZIP
I wont deny being a COMPLETE noob at this.

But my file structure is the same until emulationstation...I have no es_systems.cfg. I have es_settings.cfg but that doesnt bring up the script you have shown (or anything like it!)

Sorry for being a spanner.

User avatar
YaYa
Posts: 1719
Joined: Mon Jun 26, 2017 12:42 pm
Location: brittany - France
Has thanked: 871 times
Been thanked: 689 times
Contact:

Re: Not all of my roms are uploading onto the SD card

Post by YaYa » Wed Nov 01, 2017 4:46 am

to find a file,

Code: Select all

sudo apt-get install mlocate
This will install the locate program

then, to create a file location database

Code: Select all

sudo updatedb
then to search for a file

Code: Select all

locate your_file
where, of course, in our case, the your_file is es_systems.cfg

Code: Select all

locate es_systems.cfg
Follow me on instagram Image

User avatar
Richb77
Posts: 54
Joined: Sun Jul 23, 2017 6:17 pm
Location: Bird Mountain, Hessen, Germany
Has thanked: 7 times
Been thanked: 5 times

Re: Not all of my roms are uploading onto the SD card

Post by Richb77 » Wed Nov 01, 2017 4:58 am

Do i need to be in terminal (Unsure if thats what its called) (F4) for all this?

User avatar
YaYa
Posts: 1719
Joined: Mon Jun 26, 2017 12:42 pm
Location: brittany - France
Has thanked: 871 times
Been thanked: 689 times
Contact:

Re: Not all of my roms are uploading onto the SD card

Post by YaYa » Wed Nov 01, 2017 5:31 am

Yes from terminal either on the GBZ itself (tricky as the screen is so small) or with ssh from another computer (better as you will have terminal with a decent resolution)
Follow me on instagram Image

Post Reply

Who is online

Users browsing this forum: No registered users and 1 guest