# Django 2014-07-02 # verschachteltes Bootmenü ( Baumstruktur) für PXE-Boot # Einbinden des User-Interface-Module vesamenu.c32 default vesamenu.c32 # starten des Standardeintrages nach 60 Sekunden timeout 600 # [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 # Definition der Überschrift unseres Bootmenüs menu title *** DBAN - Festplatten/Partitionen unrettbar loeschen *** # 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) Zurueck zum Hauptmenue KERNEL vesamenu.c32 APPEND pxelinux.cfg/default LABEL 2 MENU LABEL ^2) DBAN - Standard: autonuke KERNEL images/dban/dban.bzi APPEND nuke="dwipe --autonuke" silent nousb vga=785 LABEL 3 MENU LABEL ^3) DBAN - Standard: mit Auswahl der Methode KERNEL images/dban/dban.bzi APPEND nuke="dwipe" silent vga=785 LABEL 4 MENU LABEL ^4) DBAN - Standard: Methode "dod" KERNEL images/dban/dban.bzi APPEND nuke="dwipe --autonuke --method dod522022m" silent vga=785 LABEL 5 MENU LABEL ^5) DBAN - Standard: Methode "dod3pass" KERNEL images/dban/dban.bzi APPEND nuke="dwipe --autonuke --method dod3pass" silent vga=785 LABEL 6 MENU LABEL ^6) DBAN - Standard: Methode "dodshort" KERNEL images/dban/dban.bzi APPEND nuke="dwipe --autonuke --method dodshort" silent vga=785 LABEL 7 MENU LABEL ^7) DBAN - Standard: Methode "gutmann" KERNEL images/dban/dban.bzi APPEND nuke="dwipe --autonuke --method gutmann" silent vga=785 LABEL 8 MENU LABEL ^8) DBAN - Standard: Methode "ops2" KERNEL images/dban/dban.bzi APPEND nuke="dwipe --autonuke --method ops2" silent vga=785 LABEL 9 MENU LABEL ^9) DBAN - Standard: Methode "paranoid" KERNEL images/dban/dban.bzi APPEND nuke="dwipe --autonuke --method prng --rounds 8 --verify all" silent vga=785 LABEL A MENU LABEL ^A) DBAN - Standard: Metode "prng" KERNEL images/dban/dban.bzi APPEND nuke="dwipe --autonuke --method prng --rounds 8" silent vga=785 LABEL B MENU LABEL ^B) DBAN - Standard: Methode "quick" KERNEL images/dban/dban.bzi APPEND nuke="dwipe --autonuke --method quick" silent vga=785 LABEL C MENU LABEL ^C) DBAN - Standard: Methode "zero" KERNEL images/dban/dban.bzi APPEND nuke="dwipe --autonuke --method zero" silent vga=785 # Troubleshooting Labels LABEL D MENU LABEL ^D) DBAN - Troubleshooting - Option: nofloppy KERNEL images/dban/dban.bzi APPEND nuke="dwipe" floppy=0,16,cmos vga=785 LABEL E MENU LABEL ^E) DBAN - Troubleshooting - Option: nosilent KERNEL images/dban/dban.bzi APPEND nuke="dwipe" vga=785 LABEL F MENU LABEL ^F) DBAN - Troubleshooting - Option: noverify KERNEL images/dban/dban.bzi APPEND nuke="dwipe --verify off" vga=785 # Debugging Labels LABEL G MENU LABEL ^G) DBAN - Debugging - Option: debug KERNEL images/dban/dban.bzi APPEND nuke="exec /bin/ash" debug vga=785 LABEL H MENU LABEL ^H) DBAN - Debugging - Option: shell KERNEL images/dban/dban.bzi APPEND init=/bin/sh vga=785 LABEL I MENU LABEL ^I) DBAN - Debugging - Option: verbose KERNEL images/dban/dban.bzi APPEND nuke="dwipe --method quick" vga=785 # Print the product banner and liability disclaimer. DISPLAY images/dban/warning.txt # Extra screens. F1 images/dban/warning.txt F2 images/dban/about.txt F3 images/dban/quick.txt F4 images/dban/raid.txt # The Boot Prompt # --------------- # # Usage: [label [kernel options] [nuke="dwipe [dwipe options]"]] # # Dwipe Options: # # --autonuke Be really sure. # -m --method The wipe method to use. # -r --rounds The number of times to run the method. # --verify The verification level. # # Dwipe Methods: # # dod522022m American Department of Defense 5220.22-M standard wipe. # dodshort dod3pass DoD short wipe, passess 1,2,7 from the standard wipe. # gutmann Peter Gutmann's wipe. # ops2 RCMP TSSIT OPS-II standard wipe. # prng random PRNG stream wipe. # quick zero Quick erase. # # Verification Levels: # # 0 off Do not read anything back from the device. # 1 last Check whether the device is empty after wiping. # 2 all Check whether all passes were written properly. # # Notes: # # * The rounds option does not apply to to the quick method. This method # always runs one round. # # * Use at least four rounds with the prng method. Using eight rounds with # the prng method is recommended. # # * The last pass of every method fills the device with zeros, except the # ops2 method which fills the device with a random stream on its last pass. #