Skip to content

Instantly share code, notes, and snippets.

@stefanopulze
Created July 29, 2020 07:31
Show Gist options
  • Save stefanopulze/1de509a9686f93fc301bccfa696269cf to your computer and use it in GitHub Desktop.
Save stefanopulze/1de509a9686f93fc301bccfa696269cf to your computer and use it in GitHub Desktop.
Iso to usb with MacOS
// Open Terminal
diskutil list // Show all disk and find your usb
diskutil umount /dev/disk2 // Use your usb mount point
sudo dd if=/path/of/iso.iso of=/dev/disk2 bs=1m
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment