> I've given up on trying to build a disk image manually, so now I'm trying to
> automate the kickstart installation for CentOS4. By using an iso of the
> first CD and a floppy file with a ks.cfg and doing a "linux ks=floppy" at
> the boot screen, I can get the install to fire off. Now I would like to
> figure out how to get the install to start automatically without having to
> type anything in at the boot: prompt. Suggestions?

You need to make a new CD:
   copy contents of cd to new directory
   edit the isolinux/isolinux.cfg and add " ks=floppy" on the end of
the first "append" line
   create new CD from your new copy:
     mkisofs -o new.iso \
       -b isolinux/isolinux.bin \
       -c isolinux/boot.cat \
       -no-emul-boot \
       -boot-load-size 4 \
       -boot-info-table \
       directory-that-contains-cd-copy


_______________________________________________
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel

Reply via email to