# Django 2011-11-24 # erweitertes graphisches Menü für PXE-Boot # Einbinden des User-Interface-Module vesamenu.c32 default vesamenu.c32 # starten des Standardeintrages nach 10 Sekunden timeout 100 # [0] Boot-Prompt ausblenden [1] Boot-Prompt standardmäßig angezeigen prompt 0 # [0] Öffnen des Boot mit ESC ermöglichen [1] Funktion deaktivieren. noescape 0 # Definitionen des Bootmenü-Bildschirms: # # background : Hintergrundgraphik für das Bootmenü (Größe: 640x480 Format: PNG) # border : Rahmen # cmdline : Kommandozeile # cmdmark : Kommandozeile (Marker) # disabled : Menüeintrag (nicht aktiviert) # help : Hilfe Text # hotkey : Hotkey (nicht ausgewählt) # hotsel : Hotkey (ausgewählt) # msgXX : Nachricht (Funktionstaste) Datei-Attribut XX # pwdborder : Passwortbox (Rahmen) # pwdheader : Passwortbox (Überschrift) # pwdentry : Passwortbox (Inhalt) # sel : Selektionsbalken # screen : Bildschirmhintergrund # scrollbar : Scroll-Balken # tabmsg : "Press [Tab]" Nachricht # timeout_msg : Timeout Nachricht # timeout : Timeout Zähler # title : Überschriftsbalken # unsel : Menüeintrag (nicht ausgewählt) # Definition der Überschrift unseres Bootmenüs menu title *** PXE Boot-Auswahl Menue *** # Definition einer Hintergrundgraphik für das Bootmenü (Größe: 640x480 Format: PNG) menu background bootgraphik.png menu color title 1;36;44 #0824b5 #00000000 std menu color sel * #00000000 #0824b5 * menu color hotsel 1;7;37;40 #00000000 #999999ff * menu color unsel 1;36;44 #0824b5 #00000000 std menu color hotkey 1;36;44 #0824b5 #00000000 std menu color tabmsg 1;36;44 #ed7500 #00000000 std menu color cmdline 1;36;44 #0824b5 #00000000 std menu color timeout_msg 1;36;44 #0824b5 #00000000 std menu color timeout 1;36;44 #0824b5 #00000000 std # Definition der einzelnen Booteinträge: # LABEL : Eindeutige Bezeichnung eines Booteintrages # MENU LABEL : Aussagekräftige Beschreibung des LABELs, welche im Mootmenü angezeigt werden soll # KERNEL : Definition des zu bootenden Kernel Images # APPEND : Definition von Benutzerspezifischen Kerneloptionen LABEL 1 MENU LABEL ^1) Boot from ^HD (default) localboot 0 LABEL 2 MENU LABEL ^2) Installation von CentOS 7 (64 Bit) KERNEL images/centos/7/x86_64/vmlinuz APPEND ks=http://10.0.0.57/kickstart/ks_centos_7_x86_64_dmz.cfg initrd=images/centos/7/x86_64/initrd.img ramdisk_size=128000 ksdevice=eth0 ip=dhcp --hostname=vml000250.dmz.nausch.org method=http://10.0.0.57/centos/7/os/x86_64 SERVERNAME= LABEL 3 MENU LABEL ^3) Installation von CentOS 6 (64 Bit) KERNEL images/centos/6/x86_64/vmlinuz APPEND initrd=images/centos/6/x86_64/initrd.img ramdisk_size=128000 ip=dhcp method=http://10.0.0.57/centos/6/os/x86_64 LABEL 4 MENU LABEL ^4) Installation von CentOS 6 (32 Bit) KERNEL images/centos/6/i386/vmlinuz APPEND initrd=images/centos/6/i386/initrd.img ramdisk_size=128000 ip=dhcp method=http://10.0.0.57/centos/6/os/i386