Grafisches-PXE-Bootmenue: beispiel.txt

File beispiel.txt, 2.7 KB (added by tschmitt, 2 years ago)
Line 
1DEFAULT /vesamenu.c32
2# nach Ablauf des Timeouts wird Windows XP mit synchronisiertem Autostart gebootet.
3ONTIMEOUT winxpsync
4PROMPT 0
5# STARTE winxpsync nach 5 Sek. UntÀtigkeit, wird durch Tastendruck des Anwenders unterbrochen.
6TIMEOUT 50
7# starte auf jeden Fall das Defaultsystem nach 5 Sek.,
8# auch wenn der Anwender den Autostart unterbrochen hat.
9TOTALTIMEOUT 50
10KBDMAP /german.kbd
11DISPLAY /boot.msg
12# verbietet die Änderung der APPEND-Zeile
13ALLOWOPTIONS 0
14
15# Layout-Definitionen fuer das Menue
16MENU AUTOBOOT Automatischer Start von "Windows XP - Sync+Start" in # Sekunde{n}...
17MENU BACKGROUND /logo.16
18MENU TITLE Boot-Menue der Gruppe fs
19MENU color title        1;36;44    #ffffffff #00000000 std
20MENU color sel          7;37;40    #ffffffff #ffdaa520 all
21MENU color hotsel       1;7;37;40  #ffffffff #ffdaa520 all
22MENU WIDTH 80
23MENU MARGIN 10
24MENU ROWS 12
25MENU ENDROW 24
26MENU TIMEOUTROW 18
27MENU VSHIFT 2
28
29# direkter Start des Windows-XP-Systems aus der 1. Partition
30LABEL winxp
31MENU LABEL ^1. Windows XP - Start
32KERNEL grub.exe
33APPEND keeppxe --config-file=pxe basedir /; default 0; timeout 0; hiddenmenu; title Partition 1; errorcheck off; configfile (hd0,0)/boot/grub/menu.lst; configfile (hd0,0)/menu.lst; chainloader +1; errorcheck on;
34
35# LINBO-Start mit synchronisiertem Autostart des Windows-XP-Systems
36LABEL winxpsync
37MENU LABEL ^2. Windows XP - Sync+Start
38KERNEL linbo
39APPEND initrd=linbofs.gz vga=788 quiet autostart=1
40
41# direkter Start des Ubuntu-Systems aus der 2. Partition
42LABEL ubuntu
43MENU LABEL ^3. Ubuntu - Start
44KERNEL grub.exe
45APPEND keeppxe --config-file=pxe basedir /; default 0; timeout 0; hiddenmenu; title Partition 1; errorcheck off; configfile (hd0,1)/boot/grub/menu.lst; configfile (hd0,1)/menu.lst; chainloader +1; errorcheck on;
46
47# LINBO-Start mit synchronisiertem Autostart des Ubuntu-Systems
48LABEL ubuntusync
49MENU LABEL ^4. Ubuntu - Sync+Start
50KERNEL linbo
51APPEND initrd=linbofs.gz vga=788 quiet autostart=2
52
53# LINBO-PXE-Boot ohne Autostart eines Systems
54LABEL linbo
55MENU LABEL ^5. LINBO PXE
56KERNEL linbo
57APPEND initrd=linbofs.gz vga=788 quiet autostart=0
58
59# LINBO-PXE-Boot im Debug-Modus
60LABEL debug
61MENU LABEL ^6. LINBO PXE debug
62KERNEL linbo
63APPEND initrd=linbofs.gz vga=788 debug autostart=0
64
65# lokaler LINBO-Boot
66LABEL linbo-lokal
67MENU LABEL ^7. LINBO lokal
68KERNEL grub.exe
69APPEND --config-file=default 0; timeout 0; hiddenmenu; title LINBO lokal; find --set-root --ignore-floppies --ignore-cd /linbofs.gz; kernel /linbo vga=788 quiet autostart=0; initrd /linbofs.gz;
70
71# lokaler LINBO-Boot im Debug-Modus
72LABEL debug-lokal
73MENU LABEL ^8. LINBO lokal debug
74KERNEL grub.exe
75APPEND --config-file=default 0; timeout 0; hiddenmenu; title LINBO lokal debug; find --set-root --ignore-floppies --ignore-cd /linbofs.gz; kernel /linbo vga=788 quiet autostart=0; initrd /linbofs.gz;
76