1
0
mirror of https://github.com/hacks-guide/Guide_3DS.git synced 2025-08-27 10:24:37 +02:00

Deploying to gh-pages from @ hacks-guide/Guide_3DS@d7a2864a11 🚀

This commit is contained in:
lifehackerhansol
2023-08-10 00:52:51 +00:00
parent b8191f7d19
commit 41d93a16b5
251 changed files with 1348 additions and 678 deletions

View File

@@ -486,6 +486,7 @@ window.cookieconsent.initialise({
<ul class="toc__menu" id="markdown-toc">
<li><a href="#lettura-necessaria" id="markdown-toc-lettura-necessaria">Lettura necessaria</a></li>
<li><a href="#istruzioni" id="markdown-toc-istruzioni">Istruzioni</a></li>
<li><a href="#troubleshooting" id="markdown-toc-troubleshooting">Troubleshooting</a></li>
</ul>
</nav>
@@ -520,25 +521,35 @@ mmcblk0 179:0 0 3,8G 0 disk
<li>Premi CTRL + C per uscire</li>
<li>Digitare quanto segue a seconda della tua scheda SD:
<ul>
<li>2GB or lower: <code class="language-plaintext highlighter-rouge">sudo mkfs.fat /dev/(device name from above) -s 64 -F 16</code>
<li>2GB o inferiore: <code class="language-plaintext highlighter-rouge">sudo mkfs.fat /dev/(nome del dispositivo indicato prima) -s 64 -F 16</code>
<ul>
<li>This creates a single FAT16 partition with 32 KB cluster size on the SD card</li>
<li>Verrà creata ununica partizione FAT16 con dimensione di allocazione di 32 KB sulla scheda SD</li>
</ul>
</li>
<li>4GB - 128GB: <code class="language-plaintext highlighter-rouge">sudo mkfs.fat /dev/(device name from above) -s 64 -F 32</code>
<li>4GB - 128GB: <code class="language-plaintext highlighter-rouge">sudo mkfs.fat /dev/(nome del dispositivo indicato prima) -s 64 -F 32</code>
<ul>
<li>This creates a single FAT32 partition with 32 KB cluster size on the SD card</li>
<li>Verrà creata ununica partizione FAT32 con dimensione di allocazione di 32 KB sulla scheda SD</li>
</ul>
</li>
<li>128GB or higher: <code class="language-plaintext highlighter-rouge">sudo mkfs.fat /dev/(device name from above) -s 128 -F 32</code>
<li>128GB o superiore: <code class="language-plaintext highlighter-rouge">sudo mkfs.fat /dev/(nome del dispositivo indicato prima) -s 128 -F 32</code>
<ul>
<li>This creates a single FAT32 partition with 64 KB cluster size on the SD card</li>
<li>Verrà creata ununica partizione FAT32 con dimensione di allocazione di 64 KB sulla scheda SD</li>
</ul>
</li>
</ul>
</li>
</ol>
<h3 id="troubleshooting">Troubleshooting</h3>
<ul>
<li>SD card remains undetected by console or continues to display the wrong capacity after formatting
<ul>
<li>Your SD card may be partitioned or have unallocated space. Follow the instructions <a href="https://wiki.hacks.guide/wiki/SD_Clean/Linux">here</a> to reformat your SD card.</li>
</ul>
</li>
</ul>
</section>