home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 August / maximum-cd-2011-08.iso / DiscContents / dban-2.2.6_i586.iso / isolinux.cfg < prev    next >
Encoding:
Text File  |  2010-05-24  |  3.9 KB  |  157 lines

  1. # syslinux.cfg or isolinux.cfg: Boot loader configuration file for DBAN.
  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. #  WARNING: Do not change this file with an ISO image editor.
  9. #
  10. #    You must remaster the ISO to change this file, which means running
  11. #    `mkisofs` or a similar program.  Changing this file with an ISO editor will
  12. #    break the boot loader or cause other subtle problems.
  13. #
  14.  
  15. # Set this option to zero if you wish to skip the boot prompt.
  16. PROMPT 1
  17.  
  18. # This label will be started if you just push enter at the boot prompt, or if
  19. # you set the PROMPT option above to zero.
  20. DEFAULT dban
  21.  
  22.  
  23. # NOTE: If you create a custom label, then ensure that the first eight
  24. #       characters in the label are unique.
  25.  
  26. LABEL  autonuke
  27. KERNEL dban.bzi
  28. APPEND nuke="dwipe --autonuke" silent
  29.  
  30. LABEL  dban
  31. KERNEL dban.bzi
  32. APPEND nuke="dwipe" silent
  33.  
  34. LABEL  dod
  35. KERNEL dban.bzi
  36. APPEND nuke="dwipe --autonuke --method dod522022m" silent
  37.  
  38. LABEL  dod3pass
  39. KERNEL dban.bzi
  40. APPEND nuke="dwipe --autonuke --method dod3pass" silent
  41.  
  42. LABEL  dodshort
  43. KERNEL dban.bzi
  44. APPEND nuke="dwipe --autonuke --method dodshort" silent
  45.  
  46. LABEL  gutmann
  47. KERNEL dban.bzi
  48. APPEND nuke="dwipe --autonuke --method gutmann" silent
  49.  
  50. LABEL  ops2
  51. KERNEL dban.bzi
  52. APPEND nuke="dwipe --autonuke --method ops2" silent
  53.  
  54. LABEL  paranoid
  55. KERNEL dban.bzi
  56. APPEND nuke="dwipe --autonuke --method prng --rounds 8 --verify all" silent
  57.  
  58. LABEL  prng
  59. KERNEL dban.bzi
  60. APPEND nuke="dwipe --autonuke --method prng --rounds 8" silent
  61.  
  62. LABEL  quick
  63. KERNEL dban.bzi
  64. APPEND nuke="dwipe --autonuke --method quick" silent
  65.  
  66. LABEL  zero
  67. KERNEL dban.bzi
  68. APPEND nuke="dwipe --autonuke --method zero" silent
  69.  
  70.  
  71. # Troubleshooting Labels
  72.  
  73. LABEL  nofloppy
  74. KERNEL dban.bzi
  75. APPEND nuke="dwipe" floppy=0,16,cmos
  76.  
  77. LABEL  nosilent
  78. KERNEL dban.bzi
  79. APPEND nuke="dwipe"
  80.  
  81. LABEL  noverify
  82. KERNEL dban.bzi
  83. APPEND nuke="dwipe --verify off"
  84.  
  85.  
  86. # Debugging Labels
  87.  
  88. LABEL  debug
  89. KERNEL dban.bzi
  90. APPEND nuke="exec /bin/ash" debug
  91.  
  92. LABEL  shell
  93. KERNEL dban.bzi
  94. APPEND init=/bin/sh
  95.  
  96. LABEL  verbose
  97. KERNEL dban.bzi
  98. APPEND nuke="dwipe --method quick"
  99.  
  100.  
  101. # This option will start syslinux on the first serial port.
  102. #SERIAL 0
  103.  
  104. # This kernel option will force a serial console on the first serial port.
  105. #APPEND console=ttyS0,9600n8r [...]
  106.  
  107. # Print the product banner and liability disclaimer.
  108. DISPLAY warning.txt
  109.  
  110. # Extra screens.
  111. F1 warning.txt
  112. F2 about.txt
  113. F3 quick.txt
  114. F4 raid.txt
  115.  
  116.  
  117. # The Boot Prompt
  118. # ---------------
  119. #
  120. #  Usage: [label [kernel options] [nuke="dwipe [dwipe options]"]]
  121. #
  122. #  Dwipe Options:
  123. #
  124. #       --autonuke  Be really sure.
  125. #    -m --method    The wipe method to use.
  126. #    -r --rounds    The number of times to run the method.
  127. #       --verify    The verification level.
  128. #
  129. #  Dwipe Methods:
  130. #
  131. #    dod522022m         American Department of Defense 5220.22-M standard wipe.
  132. #    dodshort dod3pass  DoD short wipe, passess 1,2,7 from the standard wipe.
  133. #    gutmann            Peter Gutmann's wipe.
  134. #    ops2               RCMP TSSIT OPS-II standard wipe.
  135. #    prng random        PRNG stream wipe.
  136. #    quick zero         Quick erase.
  137. #
  138. #  Verification Levels:
  139. #
  140. #    0  off         Do not read anything back from the device.
  141. #    1  last        Check whether the device is empty after wiping.
  142. #    2  all         Check whether all passes were written properly.
  143. #
  144. #  Notes:
  145. #
  146. #    * The rounds option does not apply to to the quick method. This method
  147. #      always runs one round.
  148. #
  149. #    * Use at least four rounds with the prng method. Using eight rounds with
  150. #      the prng method is recommended.
  151. #
  152. #    * The last pass of every method fills the device with zeros, except the
  153. #      ops2 method which fills the device with a random stream on its last pass.
  154. #
  155.  
  156. # eof
  157.