Skip to content

GameCube

Swiss

Swiss is typically used to load game backups on the GameCube. See the GC-Forever Wiki for resources on installing & running Swiss.

Warning

Swiss is sensitive to files being fragmented on SD cards (swiss-gc#763, swiss-gc#122, etc.). This means that you should only write one ISO at a time!

igir has a --writer-threads option to limit the number of files being written at once. You can use the option like this:

Replace the E:\ drive letter with wherever your SD card is:

igir copy extract test clean ^
  --dat "Redump*.zip" ^
  --input "ISOs" ^
  --output "E:\ISOs" ^
  --dir-letter ^
  --writer-threads 1

Replace the /Volumes/SD2SP2 drive name with whatever your SD card is named:

igir copy extract test clean \
  --dat "Redump*.zip" \
  --input "ISOs/" \
  --output "/Volumes/SD2SP2/ISOs/" \
  --dir-letter \
  --writer-threads 1

Replace the /media/SD2SP2 path with wherever your SD card is mounted:

igir copy extract test clean \
  --dat "Redump*.zip" \
  --input "ISOs/" \
  --output "/media/SD2SP2/ISOs/" \
  --dir-letter \
  --writer-threads 1