Created
July 29, 2020 07:31
-
-
Save stefanopulze/1de509a9686f93fc301bccfa696269cf to your computer and use it in GitHub Desktop.
Iso to usb with MacOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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