Como formatear Micro SD a bajo nivel?
Formatear micro SD (Secure Digital) a bajo nivel nos da cierta seguridad que la información que guardaba la memoria micro SD ha sido borrada.
Para realizar este tipo de formato micro sd, primero procedemos a llenar todos los bloques de sectores en el disco con 0s (ceros). La idea de esto es preparar la tarjeta saturando los sectores de la memoria para luego ser borrados con el formato de la mSD.
:~$ sudo dd if=/dev/zero of=/dev/sdd
Crear la partición de la tarjeta de memoria SD
Para poder formatear Micro SD necesitamos primero crear la partición, o grupo de particiones en la tarjeta, lo hacemos de la siguiente manera:
:~$ sudo fdisk /dev/sdd Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel Building a new DOS disklabel. Changes will remain in memory only, until you decide to write them. After that, of course, the previous content won't be recoverable.Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)Command (m for help): p Disk /dev/sdd: 1010 MB, 1010827264 bytes 32 heads, 61 sectors/track, 1011 cylinders Units = cylinders of 1952 * 512 = 999424 bytes Device Boot Start End Blocks Id System Command (m for help): n Command action e extended p primary partition (1-4) p Partition number (1-4): 1 First cylinder (1-1011, default 1): Using default value 1 Last cylinder or +size or +sizeM or +sizeK (1-1011, default 1011): 1011 Command (m for help): t Selected partition 1 Hex code (type L to list codes): b Changed system type of partition 1 to b (W95 FAT32) Command (m for help): w The partition table has been altered! Calling ioctl() to re-read partition table. WARNING: If you have created or modified any DOS 6.x partitions, please see the fdisk manual page for additional information. Syncing disks.
Como formatear una memoria micro SD en Linux
Para formatear Micro SD, debemos verificar como fue reconocido el dispositivo de tarjeta de memoria en Linux. En mi caso fue en -dev-sdd1, y el formatdo lo hacemos de la siguiente manera;
:~$ sudo mkfs.vfat -F 32 /dev/sdd1 mkfs.vfat 2.11 (12 Mar 2005)
Via | USB de arranque de Windows