Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 397 Bytes

HOWTO-format-sd-card.md

File metadata and controls

24 lines (19 loc) · 397 Bytes

How to format a SD card

If you want to format a SD card that was already flashed with a Raspberry Pi image on it you can do it with the following command:

Mac OSX

df
diskutil eraseDisk FAT32 NEU MBRFormat /dev/disk2

Windows

diskpart
list disk
select disk 6
list partition
clean
create partition primary
select partition 1
format fs=fat32 label="neu" quick
exit