Setup Steps Creating Kali Linux Live USB with Persistence:
1. load Kali Linux ISO image into your USB Drive using Win32 Disk Imager.2. Create Partition in USB, to create the partition for the data storage using MiniTool Partition Wizard.
Pick this options:
Create as: Primary · File System: Ext4 · Partition Label: persistence.
3. You Need To Boot Into Kali Linux and execute these commands in the terminal
Commands
1. fdisk -l -To List Your Drives
2. mkdir -p /mnt/myhulk -Make a directory on the filesystem to mount your USB
3. mount /dev/sdb3 /mnt/myhulk/ -Mount the partition on the directory you made
4. echo “/ union”> /mnt/myhulk/persistence.conf – Adds a configuration file to enable persistence.
5. umount /dev/sdb3 && reboot Unmount the partition and reboot.
0 Comments