Created
February 10, 2020 18:42
-
-
Save emjayoh/f080d8cacf6e17be7c5a14b5c3d58a7e to your computer and use it in GitHub Desktop.
Bootable USB drive (OSX)
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
| # convert iso to img | |
| hdiutil convert -format UDRW -o <~/Path-to-IMG-file> <~/Path-to-ISO-file> | |
| # find name | |
| diskutil list | |
| # unmount | |
| diskutil unmountDisk /dev/disk<N> | |
| # dd it, be very careful! | |
| sudo dd if=<filepathname.dmg> of=/dev/rdisk<N> bs=1m | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment