Virtual SD Card Guide: Difference between revisions

added manual method for linux
(Missing verb)
(added manual method for linux)
Line 19: Line 19:
::'''OS X''': <var>~/Library/Application\ Support/Dolphin/Wii/sd.raw</var>
::'''OS X''': <var>~/Library/Application\ Support/Dolphin/Wii/sd.raw</var>
::'''Windows''': <var>"%userprofile%\Documents\Dolphin Emulator\Wii\sd.raw"</var> (quotation marks are necessary when copying it to Command Prompt)
::'''Windows''': <var>"%userprofile%\Documents\Dolphin Emulator\Wii\sd.raw"</var> (quotation marks are necessary when copying it to Command Prompt)
=== Manual Linux Command Line Creation ===
If the above tool does not work, one can manually create a FAT32 partition image in Linux provided <kbd>dosfstools</kbd> is installed.
First, pull up a terminal, and then chdir into the Wii folder, which under certain configurations may be located at <var>~/.local/share/dolphin-emu/Wii</var> instead.
<pre>
cd ~/.dolphin-emu/Wii
</pre>
Then, we must create our raw disk image. This example create a 2048 megabyte (2GB) SD card, but one can replace the <kbd>2048</kbd> with an alternate number of megabytes.
<pre>
dd if=/dev/zero bs=1M count=2048 of=sd.raw
</pre>
Finally, we format our image to FAT32.
<pre>
mkfs.fat -F 32 sd.raw
</pre>


== Editing a Virtual SD Card ==
== Editing a Virtual SD Card ==
Anonymous user