How to Make a Linux Bootable USB on macOS
How to Make a Linux Bootable USB on macOS
Make a Linux Bootable USB on macOS
Here’s the simple way to flash a Linux ISO onto a USB drive using macOS built-in tools. No extra software, just terminal.
⚠️ This will completely erase the USB drive. Double-check the disk identifier before running anything destructive.
1. Plug in the USB
Insert your USB stick.
2. Find the Disk
List all connected drives:
1
sudo diskutil list
Look for your USB in the output. It’ll look something like:
1
/dev/disk4
Make sure you identify the correct one.
3. Erase and Format
1
sudo diskutil eraseDisk FAT32 USB /dev/disk4
Replace /dev/disk4 with your actual disk.
4. Unmount the Disk
1
sudo diskutil unmountDisk /dev/disk4
5. Write the ISO
1
sudo dd if=./linuxmint-21.3-xfce-64bit.iso of=/dev/disk4 bs=1m
This can take several minutes. There’s no progress bar. Just wait until it finishes.
6. Eject
1
sudo diskutil eject /dev/disk4
That’s it. The USB should now be bootable.
Notes
- Works reliably for ISO files 4GB or smaller when using FAT32.
- For larger ISOs, consider using a tool like balenaEtcher instead.
This post is uncopywritten by the author.
