I had issues with one live usb, nothing worked...this did...
Image the Kali Linux ISO to your USB stick. We used the “Linux Method” and dd.
Code:
dd if=kali-linux-1.0.8-amd64.iso of=/dev/sdb bs=1M
when that completes,
4. Type gparted /dev/sdb
5. You will find /dev/sdb1
/dev/sdb2
unallocated area
6. Right Click within the unallocated section, then select new from the drop-down menu that appears.
7. Create a Primary Partition, Choose ext 4 as the file system, and label the partition with the word:
persistence
8. Click on "Add" then "Apply" and let the computer format the partition in ext 4 with the label persistence.
9. When the process is completed open up a terminal window and enter the following:
For unencrypted
mkdir -p /mnt/my_usb
mount /dev/sdb3 /mnt/my_usb
echo "/ union" > /mnt/my_usb/persistence.conf
umount /dev/sdb3
Post by mmusket33