1
0
mirror of https://github.com/hacks-guide/Guide_3DS.git synced 2025-08-23 16:53:16 +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

@@ -522,17 +522,17 @@ mmcblk0 179:0 0 3,8G 0 disk
<ul>
<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>這將在 SD 卡中建立一個具有 32 KB 叢集大小的 FAT16 分區</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/(device name from above) -s 64 -F 32</code>
<ul>
<li>這將在 SD 卡中建立一個具有 32 KB 叢集大小的 FAT32 分區</li>
<li>This creates a single FAT32 partition with 32 KB cluster size on the SD card</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>
<ul>
<li>這將在 SD 卡中建立一個具有 64 KB 叢集大小的 FAT32 分區</li>
<li>This creates a single FAT32 partition with 64 KB cluster size on the SD card</li>
</ul>
</li>
</ul>