So where are you currently, You can boot into clonezilla but it's just not automatically restoring?
aka, Press "recovery", restore happens?
Short version (ha short :P) Is you need the create your own preseeding options. That auto config the options asked by the installer (Like a WDS sysprep file).
http://clonezilla.org/fine-print-liv...mfs-manual.doc
Basically choose all the options you want, and load the script as the menu options. Instead of loading into the main program
(Example from the site)
Code:
MENU DEFAULT
# MENU HIDE
MENU LABEL Clonezilla live (Default settings, VGA 800x600)
# MENU PASSWD
kernel /live/vmlinuz
append initrd=/live/initrd.img boot=live config noswap nolocales edd=on nomodeset noprompt ocs_prerun="mount /dev/sda4 /mnt" ocs_prerun1="mount --bind /mnt/Backup /home/partimag/ ocs_live_run="ocs-sr -g auto -e1 auto -e2 -c -r -j2 -k -p true restoreparts ask_user sda1" ocs_live_extra_param="" ocs_live_keymap="NONE" ocs_live_batch="no" ocs_lang="en_US.UTF-8" vga=788 ip=frommedia nosplash
TEXT HELP
* Clonezilla live version: 1.2.4-40-i686. (C) 2003-2010, NCHC, Taiwan
* Disclaimer: Clonezilla comes with ABSOLUTELY NO WARRANTY
ENDTEXT
Code:
EOF
echo "RESTORE PC2" >&2
cat << EOF
menuentry "RESTORE PC2" {
insmod part_msdos
insmod fat
set root='(hd0,msdos5)'
search --no-floppy --fs-uuid --set 140c-3521
loopback loop /ubuntu/iso/clonezilla-live-20110113-maverick.iso
set root=(loop)
linux (loop)/live/vmlinuz boot=live live-config union=aufs nolocales noprompt gfxpayload=800x600x16
ip=frommedia nosplash toram=filesystem.squashfa ocs_live_run="ocs-live-restore" ocs_live_extra_param="-g en_US.UFT-8 -t -k NONE -g auto -e1 auto -e2 -b -c restoreparts serge-image sda1"
initrd (loop)/live/initrd.img
}
EOF Short version hey
Shout if you need more details,
Steve