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>&nbsp; kernel vmlinuz<br>&nbsp; append initrd=initrd.img text ramdisk_size=8192 ks=cdrom:/auto.ks.cfg nousb nopcmcia<br>
label text<br>&nbsp; kernel vmlinuz<br>&nbsp; append initrd=initrd.img text ramdisk_size=8192 ks=cdrom:/ks.cfg nousb nopcmcia<br>################################################################<br><br>But the problem is when I write &quot;linux text&quot; it starts the &#39;Automatic&#39; installation. When I done write anything and pressed Enter then also automatic installation starts.<br>
Although when i typed &#39;text&#39; and pressed Enter then &#39;Manual&#39; installation started.<br><br>My question is: in the default linux distro when &#39;linux text&#39; 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 &#39;automatic&#39; and &#39;manual&#39; installation.<br>Can anyone help me out in this matter.<br>Help is much appreciated. :-)<br><br>Thanks,<br>Richard