Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fredericorecsky/bfc8b4f5dc4c42c0b0a6a317a9a8e0f0 to your computer and use it in GitHub Desktop.
Save fredericorecsky/bfc8b4f5dc4c42c0b0a6a317a9a8e0f0 to your computer and use it in GitHub Desktop.
mac os burn iso image to usb
# List the devices plugged
> diskutil list
# from the list choose one that is the usb
# and umount
> umount /dev/disk1s1
# If fails umount you can do it by diskutil
> diskutil unmount /dev/disk1s1
# using dd copy the stuff
> dd if=/Path/CentOS-7-x86_64-Minimal-1804.iso of=/dev/disk1s1 bs=1m
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment