If you are running UBCD Live from a USB memory stick, you can now easily persist all changes to the memory stick by doing the following:
1. Write the ISO image to the memory stick using Universal USB Installer or LinuxLive USB Creator.
2. In the root directory, you will find a tiny file called persistence.bz2. Expand that using 7-Zip or some other archival utility. You will get a 1GB file called persistence. All changes you make while booted into UBCD Live will be written to this file.
3. Edit isolinux/live.cfg and add "toram persistence" to all the boot parameters:
That's it!
1. Write the ISO image to the memory stick using Universal USB Installer or LinuxLive USB Creator.
2. In the root directory, you will find a tiny file called persistence.bz2. Expand that using 7-Zip or some other archival utility. You will get a 1GB file called persistence. All changes you make while booted into UBCD Live will be written to this file.
3. Edit isolinux/live.cfg and add "toram persistence" to all the boot parameters:
Code:
label live-486
menu label ^Live (486)
menu default
linux /live/vmlinuz
initrd /live/initrd.img
append boot=live config username=root vga=normal toram persistence
label live-486-failsafe
menu label ^Live (486 failsafe)
linux /live/vmlinuz
initrd /live/initrd.img
append boot=live config username=root memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=normal toram persistence
menu label ^Live (486)
menu default
linux /live/vmlinuz
initrd /live/initrd.img
append boot=live config username=root vga=normal toram persistence
label live-486-failsafe
menu label ^Live (486 failsafe)
linux /live/vmlinuz
initrd /live/initrd.img
append boot=live config username=root memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=normal toram persistence
That's it!