| Home | Forums | What's new | Resources | |
| Simplest Way to Add Files to Saturn ISO? |
| slinga - Oct 8, 2020 |
| dibz | Oct 9, 2020 | ||
| CDMage I believe can insert files like that, and works fine with wine (I use it all the time in linux). Jameson's suggestion is better in my opinion though. | |||
| slinga | Oct 9, 2020 | ||
| Thanks for the tips. I think I'll go with what @Jameson... recommended. | |||
| rorirub | Oct 10, 2020 | ||
| The last time I did this, I think I just made an iso file normally and then add the IP sectors with a hex editor manually. | |||
| slinga | Oct 20, 2020 | ||
| Here are my instructions: # mount the original mkdir /tmp/sgc_custom sudo mount -t iso9660 -o loop sgc_original.iso /mnt/ cd /mnt/ tar cf - . | (cd /tmp/sgc_custom; tar xfp -) # make the necessary changes # remember that filenames must be in 8.3 format> cd /tmp/sgc_custom/SAVES <add\delete saves as needed> # convert your changes back into an iso mkisofs -o sgc_modified.iso /tmp/sgc_custom # insert the boot headers from the original iso into the modified dd conv=notrunc if=sgc_original.iso of=sgc_modified.iso bs=1 count=32768 | |||