Skip to content

Instantly share code, notes, and snippets.

@ramuta
Created February 16, 2020 15:58
Show Gist options
  • Save ramuta/e37e139b015ff42f620372fe8dd6619e to your computer and use it in GitHub Desktop.
Save ramuta/e37e139b015ff42f620372fe8dd6619e to your computer and use it in GitHub Desktop.
Put a bootable ISO on a USB stick

Check the volume name of your USB stick:

diskutil list  # check for something like /dev/disk2

Then erase what you have on the stick currently:

diskutil eraseDisk FAT32 LINUX /dev/<DISK>

Unmount the disk:

diskutil unmountDisk /dev/<DISK>

Write new ISO on the disk:

sudo dd if=<path to downloaded .iso> of=/dev/<DISK> bs=1m

That's it! :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment