mirror of
https://github.com/hacks-guide/Guide_3DS.git
synced 2025-08-29 03:09:53 +02:00
Move remaining pages to VitePress
This commit is contained in:
41
docs/es_ES/formatting-sd-(linux).md
Normal file
41
docs/es_ES/formatting-sd-(linux).md
Normal file
@@ -0,0 +1,41 @@
|
||||
---
|
||||
titulo: "Formatear una tarjeta SD (Linux)"
|
||||
---
|
||||
|
||||
{% include toc title="Tabla de contenidos" %}
|
||||
|
||||
### Lectura requerida
|
||||
|
||||
Esta es una sección adicional para formatear una tarjeta SD para trabajar con la 3DS.
|
||||
|
||||
Si la 3ds ya reconoce la tarjeta SD, esta guía no es necesaria.
|
||||
|
||||
Esta página es solo para usuarios de Linux. Si no eres usuario de Linux, revisa estas páginas: [Formatear SD (Windows)](formatting-sd-(Windows)), o [Formatear SD (Mac)](formatting-sd-(mac)).
|
||||
|
||||
### Instrucciones
|
||||
|
||||
1. Asegúrate de que tu tarjeta SD **no** esté insertada
|
||||
1. Inicia la terminal de Linux
|
||||
1. Escribe `watch "lsblk"`
|
||||
1. Inserta tu tarjeta SD en tu computadora
|
||||
1. Observa el resultado. Se debería ver algo así:
|
||||
```
|
||||
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. Take note of the device name. In our example above, it was `mmcblk0p1`
|
||||
+ Si `RO` está establecido en 1, asegúrate que el interruptor de bloqueo de la tarjeta no se deslizó hacia abajo
|
||||
1. Presiona CTRL + C para salir del menú
|
||||
1. Escribe lo siguiente según tu tarjeta SD:
|
||||
+ 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