--- title: "Dumping Wii/GameCube games" --- Want to dump a GameCube or a Wii disk? There are two ways of doing so, depending on the tools you have available with you. {% capture cleanripInstructions %} ### Cleanrip guide {% include_relative cleanrip.md %} {% endcapture %} {% capture networkInstructions %} ### Dumping a game over a local network {% include_relative dump-smb.md %} {% endcapture %} ### Joining split files If you dumped the disc on a FAT32 formatted, device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. {: .notice--info} ## Windows 1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. 1. Open up a Command Prompt window. 1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. 1. Use the following command as is: `copy /b *.part?.iso game.iso`. ## macOS/Linux 1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. 1. Open up a Terminal. 1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. 1. Use the following command as is: `cat \*.part?.iso > game.iso`.
{{ cleanripInstructions | markdownify }}
{{ networkInstructions | markdownify }}