Skip to content

Instantly share code, notes, and snippets.

@kephircheek
Last active March 10, 2026 09:55
Show Gist options
  • Select an option

  • Save kephircheek/31e8c62ca0ffe424c767f9290f563379 to your computer and use it in GitHub Desktop.

Select an option

Save kephircheek/31e8c62ca0ffe424c767f9290f563379 to your computer and use it in GitHub Desktop.
Formate USB flash drive to Ext4 with Mac

Formate disk (USB flash drive) to Ext4 with Mac

  • List disks and determine the disk

    $ diskutil list
    
  • Unmount the disk

    $ diskutil unmountDisk disk4
    
  • Install e2fsprogs

    brew install e2fsprogs
    
  • Formate disk

    $ sudo $(brew --prefix e2fsprogs)/sbin/mkfs.ext4 /dev/disk4
    
  • Set label of disk

    $ sudo $(brew --prefix e2fsprogs)/sbin/e2label /dev/disk4 <name>
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment