Skip to content

Instantly share code, notes, and snippets.

@rakeshtembhurne
Created June 24, 2018 07:18
Show Gist options
  • Save rakeshtembhurne/cffa0fc1aa0ffe5723aac34d13f94bd6 to your computer and use it in GitHub Desktop.
Save rakeshtembhurne/cffa0fc1aa0ffe5723aac34d13f94bd6 to your computer and use it in GitHub Desktop.
Formatting USB or SD Card on Mac
diskutil list
diskutil unmountDisk /dev/disk3
diskutil eraseDisk FAT32 NAME_OF_DISK MBRFormat /dev/disk3
sudo dd if=my_img_or_iso_file.img of=/dev/disk3 bs=1m
diskutil unmountDisk /dev/disk3
diskutil eject /dev/disk3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment