Last active
March 13, 2024 16:43
-
-
Save ipcjk/bb7b9db2e01ff28be6ba3d4815834442 to your computer and use it in GitHub Desktop.
create bootable linux usb stick dmg for mac from iso
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
diskutil list | |
hdiutil convert -format UDRW -o image image.iso | |
diskutil unmountDisk /dev/disk2 | |
sudo dd if=image.dmg of=/dev/disk2 | |
diskutil unmountDisk /dev/disk2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment