Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2010
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.56 KB | None | 0 0
  1. # menu.lst - See: grub(8), info grub, update-grub(8)
  2. # grub-install(8), grub-floppy(8),
  3. # grub-md5-crypt, /usr/share/doc/grub
  4. # and /usr/share/doc/grub-doc/.
  5.  
  6. ## default num
  7. # Set the default entry to the entry number NUM. Numbering starts from 0, and
  8. # the entry number 0 is the default if the command is not used.
  9. #
  10. # You can specify 'saved' instead of a number. In this case, the default entry
  11. # is the entry saved with the command 'savedefault'.
  12. # WARNING: If you are using dmraid do not use 'savedefault' or your
  13. # array will desync and will not let you boot your system.
  14. default 0
  15.  
  16. ## timeout sec
  17. # Set a timeout, in SEC seconds, before automatically booting the default entry
  18. # (normally the first entry defined).
  19. timeout 3
  20.  
  21. ## hiddenmenu
  22. # Hides the menu by default (press ESC to see the menu)
  23. hiddenmenu
  24.  
  25. # Pretty colours
  26. #color cyan/blue white/blue
  27.  
  28. #A splash image for the menu
  29. splashimage=(hd0,0)/boot/grub/splashimages/appleblack.xpm.gz
  30.  
  31. ## password ['--md5'] passwd
  32. # If used in the first section of a menu file, disable all interactive editing
  33. # control (menu entry editor and command-line) and entries protected by the
  34. # command 'lock'
  35. # e.g. password topsecret
  36. ## password --md5 $1$gLhU0/$aW78kHK1QfV3P2b2znUoe/
  37. # password topsecret
  38.  
  39. #
  40. # examples
  41. #
  42. # title Windows 95/98/NT/2000
  43. # root (hd0,0)
  44. # makeactive
  45. # chainloader +1
  46. #
  47. # title Linux
  48. # root (hd0,1)
  49. # kernel /vmlinuz root=/dev/hda2 ro
  50. #
  51.  
  52. #
  53. # Put static boot stanzas before and/or after AUTOMAGIC KERNEL LIST
  54.  
  55. ### BEGIN AUTOMAGIC KERNELS LIST
  56. ## lines between the AUTOMAGIC KERNELS LIST markers will be modified
  57. ## by the debian update-grub script except for the default options below
  58.  
  59. ## DO NOT UNCOMMENT THEM, Just edit them to your needs
  60.  
  61. ## ## Start Default Options ##
  62. ## default kernel options
  63. ## default kernel options for automagic boot options
  64. ## If you want special options for specific kernels use kopt_x_y_z
  65. ## where x.y.z is kernel version. Minor versions can be omitted.
  66. ## e.g. kopt=root=/dev/hda1 ro
  67. ## kopt_2_6_8=root=/dev/hdc1 ro
  68. ## kopt_2_6_8_2_686=root=/dev/hdc2 ro
  69. # kopt=root=UUID=364ca486-a68c-4c0e-91a0-e43d85794e73 ro
  70.  
  71. ## Setup crashdump menu entries
  72. ## e.g. crashdump=1
  73. # crashdump=0
  74.  
  75. ## default grub root device
  76. ## e.g. groot=(hd0,0)
  77. # groot=(hd0,0)
  78.  
  79. ## should update-grub create alternative automagic boot options
  80. ## e.g. alternative=true
  81. ## alternative=false
  82. # alternative=true
  83.  
  84. ## should update-grub lock alternative automagic boot options
  85. ## e.g. lockalternative=true
  86. ## lockalternative=false
  87. # lockalternative=false
  88.  
  89. ## additional options to use with the default boot option, but not with the
  90. ## alternatives
  91. ## e.g. defoptions=vga=791 resume=/dev/hda5
  92. # defoptions=quiet splash
  93.  
  94. ## should update-grub lock old automagic boot options
  95. ## e.g. lockold=false
  96. ## lockold=true
  97. # lockold=false
  98.  
  99. ## Xen hypervisor options to use with the default Xen boot option
  100. # xenhopt=
  101.  
  102. ## Xen Linux kernel options to use with the default Xen boot option
  103. # xenkopt=console=tty0
  104.  
  105. ## altoption boot targets option
  106. ## multiple altoptions lines are allowed
  107. ## e.g. altoptions=(extra menu suffix) extra boot options
  108. ## altoptions=(recovery) single
  109. # altoptions=(recovery mode) single
  110.  
  111. ## controls how many kernels should be put into the menu.lst
  112. ## only counts the first occurence of a kernel, not the
  113. ## alternative kernel options
  114. ## e.g. howmany=all
  115. ## howmany=7
  116. # howmany=all
  117.  
  118. ## should update-grub create memtest86 boot option
  119. ## e.g. memtest86=true
  120. ## memtest86=false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement