Skip to content

Instantly share code, notes, and snippets.

@antonmry
Last active August 29, 2015 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antonmry/20c6b7bfb5e21d9404e9 to your computer and use it in GitHub Desktop.
Save antonmry/20c6b7bfb5e21d9404e9 to your computer and use it in GitHub Desktop.
Linux tricks
  • Insert the USB device, then open GParted.
  • Select the USB device from the list near the upper-right corner of the GParted window and detect where it was mounted: /dev/sd[1 letter]. Mine was /dev/sdc.
  • Make sure the USB device is unmounted (right-click and select unmount). Don't forget to format it to NTFS or VFAT.
  • Open a Terminal window and navigate to the iso file you want to use. I used this line:
  • The last step is to write this line:
sudo dd if=[UR .ISO] of=/dev/sd[THAT 1 LETTER]


# apt-get install syslinux
# isohybrid path/to/image.iso

# umount /media/usbdrive

Use dd to write the ISO image to the disk path. That's /dev/sde NOT /dev/sde1:

dd if=path/to/image.iso of=/dev/sde bs=1M

[Source](http://www.turnkeylinux.org/blog/iso2usb)

Some linux tricks I don't want to forget!

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