Skip to content

Instantly share code, notes, and snippets.

@karagi4
Forked from kephircheek/format2EXT4.md
Created May 13, 2025 13:09
Show Gist options
  • Select an option

  • Save karagi4/deb0bb477f4c8b337e299598cc94bd1d to your computer and use it in GitHub Desktop.

Select an option

Save karagi4/deb0bb477f4c8b337e299598cc94bd1d 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