Linux kickstart 选择默认镜像

Linux kickstart 选择默认镜像

我有以下/var/lib/tftpboot/pxelinux.cfg包含以下内容的 kickstart 文件,我正在寻找选项,其中我的 kickstart 默认从 centos6-64映像启动没有发生人机交互,我该怎么做?

DEFAULT menu
PROMPT 0
MENU TITLE Cobbler | http://www.cobblerd.org/
TIMEOUT 200
TOTALTIMEOUT 6000
ONTIMEOUT local

LABEL local
        MENU LABEL (local)
        MENU DEFAULT
        LOCALBOOT -1

LABEL centos5-32
        kernel /images/centos5/vmlinuz
        MENU LABEL centos5-32
        append initrd=/images/centos5/initrd.img ksdevice=eth0 lang=  console=ttyS1,115200 text dd=http://10.5.0.50/hp/centos/5.11/i686/dd.img noapic nolapic kssendmac vmalloc=384M  ks=http://10.10.10.1/cblr/svc/op/ks/profile/centos5-32
        ipappend 2

LABEL centos6-64
        kernel /images/centos6/vmlinuz
        MENU LABEL centos6-64
        append initrd=/images/centos6/initrd.img ksdevice=eth0 lang=  noapic text nolapic kssendmac console=ttyS1,118200  ks=http://10.10.10.1/cblr/svc/op/ks/profile/centos6-64
        ipappend 2

相关内容