Hi,<br>I am working on to add two installation options in the isolinux.cfg file. The options are:<br>1) To automatically install centos (including partitioning the HDD)<br>2) Manual installation and disk partition<br><br>For that I used different ks.cfg files:<br>
1) auto.ks.cfg - For automatic installation<br>2) ks.cfg - for manual installation<br><br>To select the installation option I edited the isolinux.cfg file as follows:<br><br>################################################################<br>
default linux<br>prompt 1<br>timeout 600<br>display boot.msg<br>F1 boot.msg<br>F2 options.msg<br>F3 general.msg<br>F4 param.msg<br>F5 rescue.msg<br>F7 snake.msg<br>label linux<br>  kernel vmlinuz<br>  append initrd=initrd.img text ramdisk_size=8192 ks=cdrom:/auto.ks.cfg nousb nopcmcia<br>
label text<br>  kernel vmlinuz<br>  append initrd=initrd.img text ramdisk_size=8192 ks=cdrom:/ks.cfg nousb nopcmcia<br>################################################################<br><br>But the problem is when I write "linux text" it starts the 'Automatic' installation. When I done write anything and pressed Enter then also automatic installation starts.<br>
Although when i typed 'text' and pressed Enter then 'Manual' installation started.<br><br>My question is: in the default linux distro when 'linux text' is entered then the installation starts in the text mode else in the graphical mode.<br>
I also need to make a similar setup for 'automatic' and 'manual' installation.<br>Can anyone help me out in this matter.<br>Help is much appreciated. :-)<br><br>Thanks,<br>Richard