Results 1 to 12 of 12

Thread: How to make a PERSISTENT live usb on windows using ext2 filesystem

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1

    Talking How to make a PERSISTENT live usb on windows using ext2 filesystem

    Hi everyone.

    The title of this post may sound silly, but many people are trying to make a persistent live usb for kali from windows, and many people don't want to use the ext4 filesystem for the 'persistence' partition, since it could reduce the lifetime of their USB. So here is my solution to this issue (apologise for the bad english).

    I assume your USB has been formated (in fat32).

    First of all, you will need to install universal USB installer . When it is done, launch it and follow the different steps to install kali linux on the USB.

    Then, download and install minitool partition wizard. When it is done, launch it, select "move/resize partition" to proceed to format a new partition of your desired size to be used for persistence. Select the "ext 2" filesystem, and Label it "persistence". Then apply change (you also need to set partition as primary, buy you do not need to "set active")

    Now, plug the USB stick into the computer you want to boot up. Make sure your BIOS is set to boot from your USB device. When the Kali Linux boot screen is displayed, select “Live” from the menu (this is the first choice).

    Ok, the system should start. Launch the terminal, and then type (this is for kali 1.0.7):

    mkdir -p /mnt/my_usb
    mount /dev/sdb2 /mnt/my_usb
    echo "/ union" > /mnt/my_usb/persistence.conf
    umount /dev/sdb2

    For earlier version, you can use this one, which is basically doing the same thing:

    mkdir /mnt/usb
    mount /dev/sdb2 /mnt/usb
    echo "/ union" >> /mnt/usb/persistence.conf
    umount /mnt/usb


    Check that the peristence conf is now on your "persistence" partition. Shutdown the system. Restart the computer and launch kali linux by selecting the "live USB persistence" option in the boot menu.

    You're done

    Note: if you have installed an earlier version of kali linux, you'll have add the word “persistence” to the end of the boot parameter line each time you want to mount your persistent storage.
    Last edited by xxyxxyxx; 2014-06-28 at 21:54. Reason: updating info

Similar Threads

  1. Replies: 0
    Last Post: 2016-12-15, 01:24
  2. Persistent Kali Live-USB with Windows accessible storage
    By edipp in forum Installing Archive
    Replies: 5
    Last Post: 2016-09-19, 01:46
  3. Replies: 3
    Last Post: 2015-08-22, 10:59
  4. Replies: 0
    Last Post: 2015-08-21, 06:28
  5. Replies: 1
    Last Post: 2015-08-12, 11:08

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •