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@bb1ba2b7f0 🚀

This commit is contained in:
lifehackerhansol
2023-07-26 14:40:57 +00:00
parent c97f37c266
commit a01a4ea66e
319 changed files with 1836 additions and 1857 deletions

View File

@@ -520,19 +520,19 @@ 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 o inferiore: <code class="language-plaintext highlighter-rouge">sudo mkfs.fat /dev/(nome del dispositivo indicato prima) -s 64 -F 16</code>
<li>2GB or lower: <code class="language-plaintext highlighter-rouge">sudo mkfs.fat /dev/(device name from above) -s 64 -F 16</code>
<ul>
<li>Verrà creata ununica partizione FAT16 con dimensione di allocazione di 32 KB sulla scheda SD</li>
<li>This creates a single FAT16 partition with 32 KB cluster size on the SD card</li>
</ul>
</li>
<li>4GB - 128GB: <code class="language-plaintext highlighter-rouge">sudo mkfs.fat /dev/(nome del dispositivo indicato prima) -s 64 -F 32</code>
<li>4GB - 128GB: <code class="language-plaintext highlighter-rouge">sudo mkfs.fat /dev/(device name from above) -s 64 -F 32</code>
<ul>
<li>Verrà creata ununica partizione FAT32 con dimensione di allocazione di 32 KB sulla scheda SD</li>
<li>This creates a single FAT32 partition with 32 KB cluster size on the SD card</li>
</ul>
</li>
<li>128GB o superiore: <code class="language-plaintext highlighter-rouge">sudo mkfs.fat /dev/(nome del dispositivo indicato prima) -s 128 -F 32</code>
<li>128GB or higher: <code class="language-plaintext highlighter-rouge">sudo mkfs.fat /dev/(device name from above) -s 128 -F 32</code>
<ul>
<li>Verrà creata ununica partizione FAT32 con dimensione di allocazione di 64 KB sulla scheda SD</li>
<li>This creates a single FAT32 partition with 64 KB cluster size on the SD card</li>
</ul>
</li>
</ul>