Blue background featuring the Kali Linux dragon silhouette and an orange USB drive labeled ‘KALI,’ with the text ‘Kali Linux Live USB.’

Create a Kali Linux Live USB with Persistence & Encryption (Windows, macOS, Linux)

Last updated on | 472 replies

Introduction

Kali Linux is a specialized Linux distribution for ethical hacking, penetration testing, and digital forensics. A Kali Linux Live USB lets you run Kali on almost any computer without permanent installation.

This guide shows how to build a Kali Linux Live USB that can save changes between sessions (persistence), plus optional LUKS encryption for extra security.

  • Capacity: For basic use, 8–16GB is often enough. If you plan to store larger files or use more tools, aim for 32GB+.
  • Persistence Partition: If you want a large persistence partition (e.g., 16GB+), ensure your USB has enough space for both the Live image and that partition.
  • Performance: Huge partitions can slow down read/write speeds on older USBs. Encryption also adds overhead—larger partitions take longer to format and open.
  • Optional Extra Partition: You could leave space for a FAT/NTFS partition if you need cross-platform file sharing.

1. Download Kali Linux ISO

Grab the latest Kali Linux Live ISO from the official Kali website. Choose the correct architecture for your system:

  1. x86_64 (Intel/AMD) for most PCs and older Intel Macs
  2. Apple Silicon (ARM64) for M1/M2 Macs

For stability, use the “Point Release Live Image” (e.g., Kali 2024.4). Weekly images are more up-to-date but less tested. If possible, use torrents for faster downloads.

Optional (Recommended): Verify the ISO
Because Kali is a security-focused distribution, it’s good practice to verify the downloaded ISO. Check the official Kali docs for details on validating checksums or GPG signatures to ensure the image hasn’t been tampered with.

2. Create a Kali Live USB

After downloading the Kali Linux ISO (and optionally verifying it), the next step is to write it to a USB drive. This creates a bootable “Live” environment that you can run on most PCs or Macs without installing Kali permanently. Below are methods for Windows, macOS, and Linux.

2.1 Windows: Rufus

Rufus is a user-friendly tool for Windows that can create a Kali Live USB. If you want persistence, Rufus can set that up automatically during this step.

  1. Download and open Rufus.
  2. Select your USB under “Device.”
  3. Click SELECT and choose the Kali Linux Live ISO.
  4. If desired, set a “Persistent partition size” (e.g., 4GB) for automatic persistence.
  5. Click START and confirm any prompts.
  6. When Rufus finishes, eject the USB.
Screenshot of Rufus on Windows showing a 128 GB USB drive, Kali Linux ISO selected, a 4 GB Persistent partition size, MBR partition scheme, and a volume label set to ‘Kali Live.’
Using Rufus to create a bootable Kali Linux USB drive with a 4 GB persistent partition.

If you forgot to set persistence or used another tool, see Step 4 to add or fix persistence later.

2.2 macOS & Linux: Balena Etcher (GUI)

Balena Etcher is a cross-platform tool for flashing OS images. On macOS and Linux, Etcher does not create a persistence partition automatically, so you’ll need to set it up manually (see Step 4).

  1. Download/install Balena Etcher.
  2. Insert your USB drive (8GB or larger).
  3. Open Etcher and choose “Flash from file”, selecting the Kali Live ISO.
  4. Pick your USB drive as the target, then click Flash.
  5. When done, safely eject the USB.

2.3 macOS & Linux: dd (CLI)

If you prefer the command line, you can use dd to write the ISO directly to the USB. This also doesn’t create persistence automatically, so you’ll need to add it later (see Step 4).

  1. Identify your USB (e.g., /dev/sdb or /dev/disk2) via lsblk, fdisk -l (Linux), or diskutil list (macOS).
  2. Unmount the USB (sudo umount /dev/sdb* on Linux or diskutil unmountDisk /dev/disk2 on macOS).
  3. Write the ISO:
    sudo dd if=/path/to/kali.iso of=/dev/sdb bs=4M status=progress
    (Adjust of= as needed.)
  4. Finish & Eject:
    Run sync then remove the USB.

3. Boot and Test Your USB

Now that you’ve created your Kali Live USB, the next step is to boot from it and confirm it works. This usually involves changing your system’s boot order or using a one-time boot menu. Below are general guidelines for both PCs and Macs.

3.1 Windows & Linux: BIOS/UEFI

  • Power on or restart your PC. During startup, press the key for your system’s boot menu or BIOS/UEFI settings (often F2, F12, Esc, or Delete).
  • In the boot options, select your USB drive. It may be listed by its brand or as “USB HDD.”
  • Save and exit. Your system should reboot from the USB and show the Kali boot menu.
  • Alternate (Windows 10/11): Hold Shift while clicking “Restart” to open Advanced Startup. Then go to Use a device → USB.
  • Tip: Some PCs have a dedicated one-time boot menu key (e.g., F9 on HP). Use that to boot from USB without permanently changing BIOS settings.

3.2 macOS Boot

  • Insert the USB drive.
  • Reboot your Mac. Immediately press and hold the Option (Alt) key.
  • Select “EFI Boot” or “Windows” (the name can vary) when the boot options appear.

Apple Silicon (M1/M2): Shut down your Mac, then press and hold the power button until the startup options screen appears. Choose your USB drive to boot from it.

3.3 Test Persistence (If Configured)

When Kali’s boot menu appears, you’ll typically see:

  • Live system (amd64)
  • Live system (amd64) fail-safe mode
  • Live system (amd64) forensic mode
  • Live system with USB persistence
  • Live system with USB encrypted persistence
  • Start installer
  • Advanced install options
  • Utilities

If you used Rufus to create a persistence partition, select “Live system with USB persistence.” Once on the Kali desktop, create a test file (e.g., on the Desktop), then reboot and pick the same persistence option. If the file remains, persistence is working!

If you did not set up persistence yet, just choose “Live system (amd64)”.

Default Credentials: The default username is kali, and the password is kali. To become root, use sudo su.

4. Manually Adding Persistence

Some tools—like Rufus on Windows—can create a persistence partition automatically, but others (Etcher, dd, etc.) do not. If you didn’t enable persistence or used a tool that lacks this feature, you can still manually add persistence to your existing Kali USB. The basic idea is to create a second partition labeled persistence, format it to ext3 or ext4, and add a configuration file so changes are saved across reboots.

4.1 Key Requirements

1. You generally cannot modify a USB while you’re booted from it if the main partition is read-only (e.g., the Kali ISO partition). You’ll need a second environment—a different USB, a VM, or another computer—so your target USB isn’t in use.

2. You need a tool that can shrink the main partition and create an ext3 or ext4 partition labeled persistence. Windows Disk Management and macOS Disk Utility generally cannot do this because of the read-only ISO partition and lack of native ext3/ext4 support.

4.2 Windows Users

Option A: Rufus (Automatic)
If you created your USB in Windows using Rufus, you can select a “Persistent partition size” during the initial setup. That way, Rufus automatically creates persistence.

Option B: Manual Creation with MiniTool Partition Wizard
If you forgot to enable persistence in Rufus or used another tool, you can still add persistence manually. A popular free option is MiniTool Partition Wizard Free:

  • Install MiniTool Partition Wizard (Free edition).
  • Shrink the main partition (the one containing Kali) to free up space.
  • Create a new partition in the unallocated space:
    • Partition Type: Primary
    • File System: Ext4
    • Partition Label: persistence
  • Apply the changes, then safely remove the USB once it’s done.
A screenshot of a partition creation dialog box titled "Create New Partition." The partition label is set to "persistence," the file system is "Ext4," and the size is about 10.53 GB. The dialog also shows fields for partition type (Primary), drive letter (None), cluster size (Default), and unallocated space values before and after set to 0.00 GB.
Creating a new partition labeled “persistence” with an Ext4 file system in MiniTool Partition Wizard Free

After creating the partition, you’ll finalize it in Kali Live (see 4.6 Configure the Persistence Partition).

4.3 macOS Users

macOS Disk Utility generally can’t resize the read-only ISO partition nor format ext3/ext4. To add a persistence partition, you must use a Linux environment—for example, boot from another Linux USB, or use a Linux VM (e.g., VirtualBox or VMware) and pass the USB through to it. Then follow the steps in 4.5 Resizing/Creating a Partition to shrink and create the persistence partition.

4.4 Linux Users

If you have another Linux system (installed or a second Live USB), you can use GParted or parted to shrink the main Kali partition and create an ext3/ext4 partition labeled persistence. You’ll then configure that partition (see 4.6) so Kali saves data across reboots.

4.5 Resizing/Creating a Partition

Regardless of your operating system, the main steps to add persistence are:

  • Shrink the existing Kali partition (the read-only ISO partition).
  • Create a new ext3 or ext4 partition labeled persistence.

Below are two common methods on Linux. For Windows, see MiniTool Partition Wizard (See 4.2 above), and for macOS, you’ll need a Linux environment or VM with GParted or parted.

Method A: GParted (GUI)

  • Boot into a Linux environment where your target USB isn’t mounted.
  • Run sudo gparted and select the USB (e.g., /dev/sdb).
  • Shrink the existing partition, then create a new ext3/ext4 partition labeled persistence.
  • Apply the changes. Note the partition name (e.g., /dev/sdb2).

Method B: parted (CLI)

If you prefer the command line:

sudo parted /dev/sdb
(parted) print
(parted) resizepart 1 <new_end>
(parted) mkpart primary ext4 <start> <end>
(parted) set 2 lba off
(parted) quit

Example Steps:

  1. Identify your USB device (e.g., /dev/sdb).
  2. print shows current partitions.
  3. resizepart shrinks the main partition.
  4. mkpart creates a new partition for persistence.
  5. quit to apply changes.
  6. Note your new partition name (e.g., /dev/sdb2).

4.6 Configure the Persistence Partition

Note: If you plan to encrypt this partition, you can skip this step and go straight to Step 5.

After creating the partition, label it persistence (if you haven’t already), then format it and add the persistence.conf file:

sudo mkfs.ext3 -L persistence /dev/sdb2
sudo e2label /dev/sdb2
sudo mkdir -p /mnt/my_usb
sudo mount /dev/sdb2 /mnt/my_usb
echo "/ union" | sudo tee /mnt/my_usb/persistence.conf
sudo umount /mnt/my_usb

Note: Adjust /dev/sdb2 if your partition name differs (e.g., /dev/sdb3 or /dev/sdc2).

4.7 Reboot and Use Persistence

Reboot your system and choose “Live (amd64) USB Persistence”. If everything is set up correctly, any changes you make will now persist across reboots.

5. (Optional) Encrypt the Persistence Partition (LUKS)

Important: This will wipe data in your persistence partition, so back up any important files first.

5.1 Identify the Correct Partition

If you already know the persistence partition (e.g., /dev/sdb2), skip to Step 5.2.

Otherwise, run:

sudo fdisk -l

You’ll see one larger FAT32 partition for the “Live” system and a smaller 83 Linux partition for persistence. For example:

Output:

Disk /dev/sdb: 115.7 GiB, 123480309760 bytes
...

Device       Boot  Start     End   Sectors   Size Id Type
/dev/sdb1           2048 34603007 34600960 16.5G  c W95 FAT32 (LBA)
/dev/sdb2       34603008 42969087  8366080     4G 83 Linux

Here, /dev/sdb2 is the persistence partition. If you don’t see it, go back to Step 4 and create one first.

5.2 If the Partition Is Currently Mounted (e.g., Rufus)

If you created this USB with Rufus and booted “Live system with USB persistence,” the persistence partition is auto-mounted, so cryptsetup will fail (“device in use”). To fix this, you need to prevent Kali from mounting it on reboot:

  • Rename the partition label (e.g., sudo e2label /dev/sdb2 old_persist). This stops Kali from recognizing it as a persistence partition on reboot.
  • Reboot into a non-persistent session (e.g., “Live system (amd64)”) so the partition is not in use.
  • Now the partition is free. Proceed to Step 5.3 to encrypt it.

5.3 LUKS Format & Configuration

Step 1: Initialize LUKS, where /dev/sdb2 is your own persistence partition:

sudo cryptsetup --verbose --verify-passphrase luksFormat /dev/sdb2

Type YES (in capitals) to confirm, then pick a secure passphrase. (If needed, generate a passphrase here).

Step 2: Open the container:

sudo cryptsetup luksOpen /dev/sdb2 my_usb

Enter your passphrase.

Step 3: Format & create persistence.conf:

sudo mkfs.ext3 -L persistence /dev/mapper/my_usb
sudo mkdir -p /mnt/my_usb
sudo mount /dev/mapper/my_usb /mnt/my_usb
echo "/ union" | sudo tee /mnt/my_usb/persistence.conf
sudo umount /mnt/my_usb
sudo cryptsetup luksClose my_usb

Reboot and choose “Live system with USB encrypted persistence.” Enter your LUKS passphrase on boot. Your data is now protected.

User Feedback & Common Issues

Over time, this guide has received many comments—some for older Kali versions. Below are common issues and tips:

  1. Partition Label Must Be “persistence”
    Ensure the partition label is exactly persistence.
  2. Password/Keyboard Layout
    LUKS passphrases can fail if you switch keyboards. Use a simple passphrase with lowercase/numbers only to avoid issues.
  3. Stuck at “Please unlock disk /dev/sdb2”
    Some older builds had encryption bugs. Update Kali or try another USB brand.
  4. “Failed Unmounting /run/live/medium” or “/tmp”
    Disabling Secure Boot or using Legacy BIOS can help. Some USB sticks are incompatible.
  5. Resize Errors/“Invalid Config File”
    Some Windows tools fail on certain USBs. Wiping partitions with diskpart or GParted can fix it.
  6. Data Only Saves in Persistence Partition
    Make sure you’re booting “(Encrypted) USB Persistence.” The persistence.conf must have / union.
  7. Sluggish Performance on Large USBs
    Use USB 3.0 or consider a full Kali install on USB if speed is critical.

Conclusion

You now have a Kali Linux Live USB that supports persistence and optional LUKS encryption. Whether you’re on Windows, macOS, or Linux, you can create a portable pentesting environment. If you get stuck, consult the official Kali docs or leave a comment below!

Let me know if this helped. Follow me on Twitter, Facebook and YouTube, or 🍊 buy me a smoothie.

472 replies

Leave a reply

Your email address will not be published. Required fields are marked *

  1. works great! thank you!

    my problem is…how can i install wifi adapters so i can connect to internet via wifi?

    1. Thanks for the feedback.

      Wifi config is beyond the scope of this guide. Try Googling your Wifi adapter name and “Linux”.

  2. Followed instructions as posted and everything works with absolutely no problems at all. Nice guide. Thanks

  3. Ok so when i get into kali live and try set up persistence, i go through the terminal and do everything up to cryptsetup where i have to enter my own pass it wont allow me to type anything. I’ve rebooted and reran terminal over again and nothing seems to work.

    1. When you type a password in Linux, there are no dots or stars so it looks like nothing is being typed. Just type your password carefully and press enter.

  4. I tried booting into encrypted persistence from a usb after doing the above but now it doesn’t ask me for the passphrase firstly and secondly, after kali linux loads, I cannot interact with the interface at all – cannot click anything.
    Please advise

  5. I’ve tried this tutorial for 2 days but it did not work. and finally today I succeeded by becoming a Root Superuser first with password root/toor. with Kali Linux version 2018.2

      1. HELPPPPPPP!! i m using Kali 2018.2
        i did everything u mentioned……
        actually i need to use fluxion and this program has to install its dependencies, and when i restart the dependencies go away……. so i have to do that again and again….
        one more thing, i havr to copy all my files to the 3.6 GB Volume if i want it back…. if i save it in root, it vanishes after reboot….
        plz helppppp

      2. P.S. I am using a 8 GB usb……should i use a 16 GB drive….because i am going to use this live usb only for one program (fluxion) which doesnt take many MBs…….

  6. Je vous suis sincèrement reconnaissant pour votre requête c’était vraiment un poids qui s’en est aller .
    Soyez abondamment bénis.

  7. Persistence works for files but settings still reset because it still is a live install. Is there any way to enable install on a usb like a regular install so that settings are also retained post reboot?

    1. For my 2018.3 even the settings have been stored after reboot. (keyboard and language setting). Did you try the latest release, too?

  8. if it does not work
    in Kali GPARTED start and check partition labeling.
    Enter “persistence” again

    Amarok

  9. This works on my computer. However, when I boot up on a different computer, it doesn’t recognize my pass code. I get a message saying “No key available for this passphrase”

    1. Do you have any special chars in your passphrase? Your other computer might have a different keyboard layout configured.

  10. So I followed each step carefully but cannot save anything. After every boot I lose all my changes, files etc

    This is what my fdisk -l is…

    root@kali:~# fdisk -l
    Disk /dev/sdb: 7.5 GiB, 8054112256 bytes, 15730688 sectors
    Units: sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disklabel type: dos
    Disk identifier: 0x00000000

    Device Boot Start End Sectors Size Id Type
    /dev/sdb1 * 2048 8384511 8382464 4G c W95 FAT32 (LBA)
    /dev/sdb2 8384512 15730687 7346176 3.5G 83 Linux

    Could it possibly be the size of sdb2 since I’ve seen somewhere that you need at least 8GB of free space in the second partition

  11. before you proceed to step 5, you must boot Kali in “Live system (persistence mode)” and not in Live system mode

    1. I don’t see how that makes any difference because you haven’t created persistence.conf yet, which this boot option will look for. I’ve tested this several times.

      1. works for me, i had troubles with setting up persistence booting in Live system, then i tried booting in persistence mode and continue from step 5, turns out to be the solution for me

      2. i believe this boot option actually enables the possibility of setting up persistence, i have tried it your way twice and it did not work, i went troubleshooting and that’s how i successfully set up persistence, i tested it by creating a map on desktop, rebooting and the map is still there.

        1. Thanks for the feedback 🙂

          If anyone else has this issue, could they please let us know in the comments.

          1. Just for info, I also had the same issue. Followed the tut above to the letter, 3 times, result, no persistence.

            Followed the above to the letter, with the single exception of booting into live persistence, prior to step 5, and persistence took effect thereafter.

            Other than that tiny issue, thanks for the excellent tut

          2. OK, thanks for the feedback. I’ve changed that step now. We’ll see if anyone else has problems.

  12. It is a nice guide but may I ask how can I “full install” Kali to my USB instead of making a persistence for it to use file..? I have search this in Google but all I found is Live or with persistence only…

    1. I’ve never done it before but I’m sure it’s possible.

      I think you’ll need two USB drives though, one to load the ISO install, and when you get the the bit about partitions disks (Step 10 here), see if your other USB drive shows up there.

      1. It is not working..I can’t find my usb on the boot menu after the installation…I guess I will have to use the encrypted persistence 🙁

  13. Hello!
    Thanks for that!

    some info:
    If you after 1-3 parts start live on mac and do steps 4-7 you don’t have success. In mac fdisk -l also /dev/sdb2 but doesn’t save changes.
    Then I start live on Win computer and do steps 4-7 and then it’s all done! 🙂 and after that it starts normally on mac.

  14. Hi! First great guide! Took me a while to get it to work at first, i was installing kali with win32 disk installer. Which created a smaller recovery partition for kali interfering with persistence for some reason. After getting it all sorted out i got the persistence drive working. However when im saving something to the desktop nothing stays after a reboot. I went it to make sure the “” were removed from around the / union. All was well but still cant get things to save outside the persistence drive. When i reboot the persistence drive is remounted, not sure if that changes anything. Hope you can help.

    1. Also to mention i orginally mounted the persistence drive with /dev/sdc2, but i noticed after doing a fdisk -l i see it listed as /dev/sdd2 and my other partition ks /dev/sdd1 (changed from sdb1)

      1. Honestly, i have no idea why im doing it, it was suggested in a couple FAQ’s i found. I’m just following along, I dont really have any experince with linux prior this. Should i put quotes around the / union in the config file?

  15. When I run fdisk-l it shows my usb drive as sdb2 I enter the mount commands reboot to persistence and it’s labled sda2. Hmmm

  16. It didn’t work for me either until for step 4 I booted with “live system persistence” instead of “live system” which kept the mount point and persistence.conf file I created in step 5. Now if i create a folder it survives reboots.

    1. Not sure how that makes a difference. In step 4, there’s no point selecting the persistence option because you haven’t set up the persistence partition yet.

      Anyway, it worked for you in the end 🙂

  17. Now this is what I call class..Have tried creating the persistence for the past 2 days using all guides there is, all failed untill I found this. Simple and straight forward and works…yeeeeei! Thank you so much. I could have bought you a drink if you were close, but cheers!

  18. It works! But I used rufus for kali image, and then followed the rest of the steps, dont use disk imager for this task