mirror of
https://github.com/hacks-guide/Guide_3DS.git
synced 2025-09-01 20:42:41 +02:00
Move remaining pages to VitePress
This commit is contained in:
41
docs/nl_NL/formatting-sd-(linux).md
Normal file
41
docs/nl_NL/formatting-sd-(linux).md
Normal file
@@ -0,0 +1,41 @@
|
||||
---
|
||||
title: "SD-kaart formatteren (Linux)"
|
||||
---
|
||||
|
||||
{% include toc title="Inhoudsopgave" %}
|
||||
|
||||
### Verplicht te lezen
|
||||
|
||||
Dit is een extra sectie voor het formatteren van een SD-kaart om deze te doen werken met de 3DS.
|
||||
|
||||
Als de 3DS de SD kaart al herkent, is deze handleiding niet nodig.
|
||||
|
||||
Deze pagina is alleen voor Linux gebruikers. Als je geen Linux gebruikt, zie dan de [Formatteer SD (Windows)](formatting-sd-(windows)) of [Formatteer SD (Mac)](formatting-sd-(mac)) pagina's.
|
||||
|
||||
### Instructies
|
||||
|
||||
1. Zorg ervoor dat je SD kaart **niet** geplaatst is
|
||||
1. Start de Linux Terminal
|
||||
1. Type `watch "lsblk"`
|
||||
1. Plaats je SD kaart in je computer
|
||||
1. Observeer de uitvoer. Het zou er zo moeten uitzien:
|
||||
```
|
||||
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
|
||||
mmcblk0 179:0 0 3,8G 0 disk
|
||||
└─mmcblk0p1 179:1 0 3,7G 0 part /run/media/user/FFFF-FFFF
|
||||
```
|
||||
1. Noteer de naam van je apparaat. In ons voorbeeld hierboven, was het `mmcblk0p1`
|
||||
+ Als `RO` is ingesteld op 1, check dan even of je SD-kaart niet fysiek vergrendelt is
|
||||
1. Druk op CTRL + C om het menu te verlaten
|
||||
1. Typ het volgende voor jouw overeenkomende SD kaart:
|
||||
+ 2GB or lower: `sudo mkfs.fat /dev/(device name from above) -s 64 -F 16`
|
||||
+ This creates a single FAT16 partition with 32 KB cluster size on the SD card
|
||||
+ 4GB - 128GB: `sudo mkfs.fat /dev/(device name from above) -s 64 -F 32`
|
||||
+ This creates a single FAT32 partition with 32 KB cluster size on the SD card
|
||||
+ 128GB or higher: `sudo mkfs.fat /dev/(device name from above) -s 128 -F 32`
|
||||
+ This creates a single FAT32 partition with 64 KB cluster size on the SD card
|
||||
|
||||
### Troubleshooting
|
||||
|
||||
* SD card remains undetected by console or continues to display the wrong capacity after formatting
|
||||
+ Your SD card may be partitioned or have unallocated space. Follow the instructions [here](https://wiki.hacks.guide/wiki/SD_Clean/Linux) to reformat your SD card.
|
Reference in New Issue
Block a user