Skip to content

Instantly share code, notes, and snippets.

@samgooi4189
Created December 10, 2016 16:40
Show Gist options
  • Save samgooi4189/5127bbf5af92c76cf37f8d23bc4ec511 to your computer and use it in GitHub Desktop.
Save samgooi4189/5127bbf5af92c76cf37f8d23bc4ec511 to your computer and use it in GitHub Desktop.
create linux bootable usb
#!/bin/bash
# Usage:
# ./createBootableUSB.sh /path/to/distro.iso /dev/sdX
sudo apt-get update
sudo apt-get install syslinux syslinux-utils --y
sudo umount $2
isohybrid $1 --entry 4 --type 0x1c
sudo dd bs=8M if=$1 of=$2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment