Created
November 19, 2016 09:54
-
-
Save olssonm/a47b862ac219a7646909d2a5ddd3eaf0 to your computer and use it in GitHub Desktop.
Formatting USB/SD-cards etc. to FAT32 in macOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Find the correct disk with diskutil | |
$ diskutil list | |
// Erase and format drive where "NAME" is the desired name (in capital letters) and "/dev/disk" is the target disk | |
$ sudo diskutil eraseDisk FAT32 NAME MBRFormat /dev/disk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment