Hi ,
I was able to create a custom boot menu for any ubuntu distribution ( sample trusty menu )
:fog.trusty
set path /fog/OS_IMAGES/ubuntu-14.04.3-DVD
set nfs_path /images/OS_IMAGES/ubuntu-14.04.3-DVD
kernel http://fogsrv/fog/OS_IMAGES/ubuntu-14.04.3-DVD/install/netboot/ubuntu-installer/amd64/linux || read void
initrd http://fogsrv/fog/OS_IMAGES/ubuntu-14.04.3-DVD/install/netboot/ubuntu-installer/amd64/initrd.gz || read void
imgargs linux root=/dev/nfs boot=casper live-installer/net-image=http://fogsrv/fog/OS_IMAGES/ubuntu-14.04.3-DVD/install/filesystem.squashfs ks=http://fogsrv/fog/OS_IMAGES/kickstarts/precise_ks.cfg ip=dhcp splash quiet – || read void
boot || read void
goto start
Now I am trying to create the same type for centos
:fog.centos
set path /fog/OS_IMAGES/CENTOS-6.8-DVD
set nfs_path /images/OS_IMAGES/CENTOS-6.8-DVD
kernel http://fogsrv/fog/OS_IMAGES/CENTOS-6.8-DVD/images/pxeboot/vmlinuz || read void
initrd http://fogsrv/fog/OS_IMAGES/CENTOS-6.8-DVD/images/pxeboot/initrd.img || read void
append ks=http://fogsrv/fog/kickstarts/centos6.cfg ramdisk_size=100000 ksdevice=eth0 root=/dev/rd/0 ip=dhcp url --url http://10.0.28.24/fog/OS_IMAGES/CENTOS-6.8-DVD || read void
boot || read void
goto start
When trying to boot the client through centos. It boots and complains on “append” option.
“APPEND options not recognized”
Did anyone create a centos iso installation menu with kickstart?
Thank you
Chakri