Skip to main content

ISO to USB using MacOS

·42 words·1 min
Orlando Gentil
Author
Orlando Gentil
Jack of all trades, master of none
Table of Contents
Write an ISO to an USB drive with system commands if you are using MacOS

MacOS
#

Find the disk
#

diskutil list

Umount partitions
#

sudo diskutil umount /dev/<disk_part>

Write using dd
#

sudo dd if=<iso file> of=/dev/<usb drive> bs=1m status=progress