Skip to content

Instantly share code, notes, and snippets.

@mcandre
Created January 19, 2020 21:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcandre/fa2c02a90f0c2e45ec6c616e67930f7c to your computer and use it in GitHub Desktop.
Save mcandre/fa2c02a90f0c2e45ec6c616e67930f7c to your computer and use it in GitHub Desktop.
macOS Format Disk as FAT-16

Use Disk Utility.app to identify the drive number for the desired disk device. Then:

$ diskutil unmountDisk disk<n>
$ sudo newfs_msdos -F 16 /dev/disk<n>
$ diskutil mount /dev/disk<n>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment