Make USB bootable for kali linux
Andrew Henderson
I am using Ubuntu 14.04LTS. I want to make a bootable usb stick using kali iso image file for Kali Linux installation. I tried following ways:
unetbootin-linux-608- it is just writing 4 text files and then asking for reboot without writing files.I also tried . It created the live usb with 3.2GB data, but when i am rebooting by selecting pen drive as boot device, it is not loading rather Ubuntu is booting up.
Startup Disk Creator - but giving same problem as mentioned here
Can anybody please suggest me proper way/tool to create bootable pen drive.
92 Answers
I've had similar problems as you with Unetbootin. Give it a try with the dd utility instead.
First make sure that the usb-drive is not mounted.
Get the usb device name with:
lsblkAnd then use the dd command like this to create the bootable usb:
sudo dd bs=4M if=/path/to/your.iso of=/dev/xxx && syncReplace /dev/xxx with your usb device name. (Do NOT append a partition number, for example like this /dev/sdb1).
Finally,Installed Kali!! Using Ubuntu's Disk Image Writer!!
2