Indeed, my remaster ISO is 925 MB large and I don't bother burning it to DVD

. So I wrote a little script to remaster directly to USB (conditions of use are listed in the first dialogue - it only copies the livecd.sqfs file). Maybe people can give comments and improve it and something like it could be included in future MCNlive version.
I think it would be great to have an MCNlive version with Openoffice and with the full KDE / MCC help files, that would be a real attractive one for people changing over from Windows. As a newbie, my heart sank when I found there were no help files, and Openoffice is a much better incentive to give up MS Office than KOffice. MCNlive has a HUGE potential to lure people away from Windows - a major reason why I chose it - but that means you are dealing with Linux newbies, so having help files and a script like this could increase MCNlive's appeal to that kind of target group.
------------------------------------------------------------------------
#!/bin/sh
success="1"
until [ $success -eq 0 ]
do
dialog --title "Remastering" --backtitle "Remaster Your System" --inputbox "Note: this script assumes that a) the device you are about to remaster to has already been remastered once using the Create LiveUSB menu, and

is currently NOT the medium form which the system is being run (you have either booted from a different device, or have booted from this device using the copy2ram mode).
Please enter the path and name of the remaster ISO file (e.g. /mnt/hda5/live2.iso)" 13 74 2>/tmp/input
sel=$?
if [ $sel -eq 1 ]
then
exit 0
fi
path=`cat /tmp/input`
echo "Checking..."
ls $path
pexist=$?
if [ $pexist -eq 0 ]
then
success="0"
else
success="1"
dialog --title "Error - Invalid Path" --backtitle "Remaster Your System" --msgbox "The file $path does not exist, please try again." 8 50 2>/tmp/input3
fi
done
success="1"
until [ $success -eq 0 ]
do
dialog --title "Remastering" --backtitle "Remaster Your System" --inputbox "Please enter the mount point of the device to which you will copy the remastered system (e.g. /mnt/sda1/ or /mnt/win_e):" 9 58 2>/tmp/input
sel=$?
if [ $sel -eq 1 ]
then
exit 0
fi
path2=`cat /tmp/input`
echo "Checking..."
ls $path2
pexist=$?
if [ $pexist -eq 0 ]
then
success="0"
else
success="1"
dialog --title "Error - Invalid Path" --backtitle "Remaster Your System" --msgbox "The device $path2 does not exist, please try again." 8 50 2>/tmp/input3
fi
done
echo "------------------------------------------------------------"
echo "------------------------------------------------------------"
echo "Please wait, the remastering process can take a few minutes."
# ensure that /mnt/iso is available
/initrd/loopfs/bin/umount /mnt/iso
/initrd/loopfs/bin/mkdir /mnt/iso
/initrd/loopfs/bin/mount -o loop $path /mnt/iso
/initrd/loopfs/bin/cp -f /mnt/iso/livecd.sqfs $path2
result=$?
# unmount and remove
/initrd/loopfs/bin/umount /mnt/iso
rm -f /mnt/iso
if [ $result -eq 0 ]
then
dialog --title "Remastering" --backtitle "Remaster Your System" --msgbox "Remastering was successful, you may reboot from the device $path2 at your convenience." 8 50 2>/tmp/input3
else
dialog --title "ERROR" --backtitle "Remaster Your System" --msgbox "Remastering to device $path2 failed. Please ensure that you have write access to it." 8 50 2>/tmp/input3
fi
rm -f /tmp/input
rm -f /tmp/input3