Skip to content

Commit 2a57348

Browse files
LoganEndremannikkiwritescode
authored andcommitted
Update basicmoddersguide.astro
1 parent f613589 commit 2a57348

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/pages/basicmoddersguide.astro

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,17 @@ import Layout from '~/layouts/layout.astro';
3838
</p>
3939
<p class="card-text">
4040
CleanRip will split the ripped disc file with more than 4 GiB in file size regardless to fit the FAT, FAT16, or FAT32 file systems. These file systems have a max file size of 4 GiB. To remedy this, it is recommended to rip discs to a USB external NTFS formatted storage device (as Wii cannot read NTFS formatted SD cards). The NTFS file system has a theoretical max file size of 16 EiB (Exabyte), or 16,777,216 GiB.
41+
Joining Split Files
42+
43+
A disc image in split parts will need to be joined before dolphin can read it. A simple command from command prompt and terminal can do it! Use the example command for your system. Use the "cd" command to change directory to the file's location. The example command assumes CleanRip's "GAMEID.part#.iso" filename nomenclature, and creates "GAMEID.iso". The part files can be deleted after the joined file is created.
44+
45+
Windows
46+
cd <directory>
47+
copy /b GAMEID.part?.iso GAMEID.iso
48+
49+
Linux / macOS / Android
50+
cd <directory>
51+
cat GAMEID.part*.iso > GAMEID.iso
4152
</p>
4253
<p></p>
4354
</div>

0 commit comments

Comments
 (0)