Skip to content

Instantly share code, notes, and snippets.

@dvcorreia
Last active August 23, 2022 10:17
Show Gist options
  • Save dvcorreia/a31cb1ddea715b0582230ede84a366d0 to your computer and use it in GitHub Desktop.
Save dvcorreia/a31cb1ddea715b0582230ede84a366d0 to your computer and use it in GitHub Desktop.
Recover and restore partitions in SD card / USB Pen

Partition recovery

Windows

Search in windows or Run: ´diskpart´

list disk
select Disk #
select partition 1
delete partition
clean
create partition primary
format quick label="namecardwithnospaces"
exit

OSX

diskutil list external physical
diskutil eraseDisk FAT32 THENAMEOFYOURDISK MBRFormat diskX

To zero out the disk (optional):

diskutil unmountDisk diskX
diskutil zeroDisk diskX
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment