home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2006 October / PCpro_2006_10.ISO / files / wininside / ubcd / ubcd34-basic.exe / ubcd34-basic.iso / images / dban.igz / dban.img / syslinux.cfg < prev    next >
Encoding:
Text File  |  2005-07-24  |  4.6 KB  |  149 lines

  1. # syslinux.cfg: Boot loader configuration file for Darik's Boot and Nuke.
  2.  
  3. #  WARNING: Only use notepad to edit this file.
  4. #
  5. #    This file is line and case sensitive. Ensure that your text editor does not
  6. #    automatically insert line breaks or otherwise apply automatic formatting.
  7. #
  8.  
  9.  
  10. # Set this option to zero if you wish to skip the boot prompt.
  11. PROMPT 1
  12.  
  13. # This label will be started if you just push enter at the boot prompt, or if
  14. # you set the PROMPT option above to zero.
  15. DEFAULT dban
  16.  
  17.  
  18. # NOTE: If you create a custom label, then ensure that the first eight
  19. #       characters in the label are unique.
  20.  
  21. LABEL  autonuke
  22. KERNEL kernel.bzi
  23. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc nuke="dwipe --autonuke" silent
  24.  
  25. LABEL  dban
  26. KERNEL kernel.bzi
  27. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc nuke="dwipe" silent
  28.  
  29. LABEL  dod
  30. KERNEL kernel.bzi
  31. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc nuke="dwipe --autonuke --method dod522022m" silent
  32.  
  33. LABEL  dod3pass
  34. KERNEL kernel.bzi
  35. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc nuke="dwipe --autonuke --method dod3pass" silent
  36.  
  37. LABEL  dodshort
  38. KERNEL kernel.bzi
  39. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc nuke="dwipe --autonuke --method dodshort" silent
  40.  
  41. LABEL  gutmann
  42. KERNEL kernel.bzi
  43. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc nuke="dwipe --autonuke --method gutmann" silent
  44.  
  45. LABEL  nofloppy
  46. KERNEL kernel.bzi
  47. APPEND floppy=0,16,cmos initrd=initrd.gz root=/dev/ram0 init=/rc quiet nuke="dwipe" silent
  48.  
  49. LABEL  ops2
  50. KERNEL kernel.bzi
  51. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc quiet nuke="dwipe --autonuke --method ops2" silent
  52.  
  53. LABEL  paranoid
  54. KERNEL kernel.bzi
  55. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc quiet nuke="dwipe --autonuke --method prng --rounds 8 --verify all" silent
  56.  
  57. LABEL  prng
  58. KERNEL kernel.bzi
  59. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc quiet nuke="dwipe --autonuke --method prng --rounds 8" silent
  60.  
  61. LABEL  quick
  62. KERNEL kernel.bzi
  63. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc quiet nuke="dwipe --autonuke --method quick" silent
  64.  
  65. LABEL  zero
  66. KERNEL kernel.bzi
  67. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc quiet nuke="dwipe --autonuke --method zero" silent
  68.  
  69.  
  70. LABEL  debug
  71. KERNEL kernel.bzi
  72. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc nuke="exec ash" debug
  73.  
  74. LABEL  shell
  75. KERNEL kernel.bzi
  76. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc nuke="exec ash"
  77.  
  78. LABEL  verbose
  79. KERNEL kernel.bzi
  80. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc nuke="dwipe --method quick"
  81.  
  82.  
  83. # The DBAN kernel uses DevFS without devfsd, so you may not use conventional
  84. # device node file names in kernel options.
  85. #
  86. # Note that Linux 2.4.19+ will not boot with root=/dev/rd/0.  The /dev/ram0
  87. # name is, however, now hardcoded in 'init/do_mounts.c' so root=/dev/ram0 works
  88. # instead.  This violates the DevFS documentation and is probably a kernel bug.
  89. #
  90. # If a VGA or HGA video adapter is not found, then the first serial port
  91. # detected will be used as the system console.
  92.  
  93. # This option will start syslinux on the first serial port.
  94. #SERIAL 0
  95.  
  96. # This kernel option will force a serial console on the first serial port.
  97. #APPEND console=ttyS0,9600n8r [...]
  98.  
  99. # Print the product banner and liability disclaimer.
  100. DISPLAY warning.txt
  101.  
  102. # Extra screens.
  103. F1 warning.txt
  104. F2 about.txt
  105. F3 quick.txt
  106. F4 trouble.txt
  107.  
  108.  
  109. # The Boot Prompt
  110. # ---------------
  111. #
  112. #  Usage: [label [kernel options] [nuke="dwipe [dwipe options]"]]
  113. #
  114. #  Dwipe Options:
  115. #
  116. #       --autonuke  Be really sure.
  117. #    -m --method    The wipe method to use.
  118. #    -r --rounds    The number of times to run the method.
  119. #       --verify    The verification level.
  120. #
  121. #  Dwipe Methods:
  122. #
  123. #    dod522022m         American Department of Defense 5220-22.M standard wipe.
  124. #    dodshort dod3pass  DoD short wipe, passess 1,2,7 from the standard wipe.
  125. #    gutmann            Peter Gutmann's wipe.
  126. #    ops2               RCMP TSSIT OPS-II standard wipe.
  127. #    prng random        PRNG stream wipe.
  128. #    quick zero         Quick erase.
  129. #
  130. #  Verification Levels:
  131. #
  132. #    0  off         Do not read anything back from the device.
  133. #    1  last        Check whether the device is empty after wiping.
  134. #    2  all         Check whether all passes were written properly.
  135. #
  136. #  Notes:
  137. #
  138. #    * The rounds option does not apply to to the quick method. This method
  139. #      always runs one round.
  140. #
  141. #    * Use at least four rounds with the prng method. Using eight rounds with
  142. #      the prng method is recommended.
  143. #
  144. #    * The last pass of every method fills the device with zeros, except the
  145. #      ops2 method which fills the device with a random stream on its last pass.
  146. #
  147.  
  148. # eof
  149.