How to make a bootable Kali Linux USB with persistence.
Persistence means that all the data changes that take place while you are using the system, they will be saved on the usb/pendrive that you Linux is in.
Reasons for using Live USB with Persistence are:
You use all of your system resourcess eg. CPU, RAM, GPU, etc You take no space of your Hard Drive for it and You can take your OS to any PC you use.
Requirements:
1. Universal USB Installer : www.pendrivelinux.com/ universal-usb-installer-easy-as-1-2-3
2 Kali Linux Image: https://www.kali.org/ downloads/
3. MiniTool Partition Wizard www.partitionwizard.com
Commands Used In Kali
1. fdisk -l :-To List Your Drives
2. mkdir -p /mnt/UUI :-Make a directory on the filesystem
to mount your USB
3.mount /dev/sdb2 /mnt/UUI on the directory you made
4. echo "/ union" /mnt/UUl/persistence.conf
Adds a configuration file to enable persistence,
5. umount /dev/sdb2