Linux – dd to create bootable linux usb, resulting filesystem unrecognozed

bootable-mediacommand linelinuxliveusbUbuntu

I tried to create a bootable usb of kali linux using "dd if=kali.iso of=dev/sdb bs=512k" as per http://docs.kali.org/installation/kali-linux-live-usb-install but the resulting filesystem is unrecognized by gparted and the usb is undiscoverable in finder.

In linux what innate utilities exist to create bootable media? How do they differ from external applications? I would greatly appreciate the help.

Best Answer

You could also try with

cp kali.iso /dev/sdb ; sync

if you are not sure that the image is an hybrid one you could also try this before copying

isohybrid kali.iso
Related Question