Skip to content

Instantly share code, notes, and snippets.

@ak-git
Last active March 21, 2024 06:31
Show Gist options
  • Save ak-git/41f62ca0cd3087dffb1526aaf379bffd to your computer and use it in GitHub Desktop.
Save ak-git/41f62ca0cd3087dffb1526aaf379bffd to your computer and use it in GitHub Desktop.
MacOS: How can I delete the partition table on a USB flash drive?

find the path to the usb

diskutil list

delete the partition and reformat

diskutil partitionDisk <YOUR-USB-DEV-PATH> MBR MS-DOS FAT32 100%

example

diskutil partitionDisk /dev/disk2 MBR MS-DOS FAT32 100%
@ak-git
Copy link
Author

ak-git commented May 10, 2023

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