Advertisement
Guest User

grub.cfg

a guest
Jan 24th, 2013
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.60 KB | None | 0 0
  1. #
  2. # DO NOT EDIT THIS FILE
  3. #
  4. # It is automatically generated by grub-mkconfig using templates
  5. # from /etc/grub.d and settings from /etc/default/grub
  6. #
  7.  
  8. ### BEGIN /etc/grub.d/00_header ###
  9. if [ -s $prefix/grubenv ]; then
  10. load_env
  11. fi
  12. set default="0"
  13. if [ "${prev_saved_entry}" ]; then
  14. set saved_entry="${prev_saved_entry}"
  15. save_env saved_entry
  16. set prev_saved_entry=
  17. save_env prev_saved_entry
  18. set boot_once=true
  19. fi
  20.  
  21. function savedefault {
  22. if [ -z "${boot_once}" ]; then
  23. saved_entry="${chosen}"
  24. save_env saved_entry
  25. fi
  26. }
  27.  
  28. function load_video {
  29. insmod vbe
  30. insmod vga
  31. insmod video_bochs
  32. insmod video_cirrus
  33. }
  34.  
  35. set timeout=5
  36. ### END /etc/grub.d/00_header ###
  37.  
  38. ### BEGIN /etc/grub.d/05_debian_theme ###
  39. set menu_color_normal=cyan/blue
  40. set menu_color_highlight=white/blue
  41. ### END /etc/grub.d/05_debian_theme ###
  42.  
  43. ### BEGIN /etc/grub.d/10_linux ###
  44. menuentry 'Debian GNU/Linux, with Linux 3.2.0-4-amd64' --class debian --class gnu-linux --class gnu --class os {
  45. insmod gzio
  46.  
  47. echo 'Loading Linux 3.2.0-4-amd64 ...'
  48. linux /boot/vmlinuz-3.2.0-4-amd64 root=UUID=4ad17584-97b2-4ed8-9f93-f74ccfc09c85 ro quiet
  49. echo 'Loading initial ramdisk ...'
  50. initrd /boot/initrd.img-3.2.0-4-amd64
  51. }
  52. menuentry 'Debian GNU/Linux, with Linux 3.2.0-4-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os {
  53. insmod gzio
  54.  
  55. echo 'Loading Linux 3.2.0-4-amd64 ...'
  56. linux /boot/vmlinuz-3.2.0-4-amd64 root=UUID=4ad17584-97b2-4ed8-9f93-f74ccfc09c85 ro single
  57. echo 'Loading initial ramdisk ...'
  58. initrd /boot/initrd.img-3.2.0-4-amd64
  59. }
  60. menuentry 'Debian GNU/Linux, with Linux 3.2.0-3-amd64' --class debian --class gnu-linux --class gnu --class os {
  61. insmod gzio
  62.  
  63. echo 'Loading Linux 3.2.0-3-amd64 ...'
  64. linux /boot/vmlinuz-3.2.0-3-amd64 root=UUID=4ad17584-97b2-4ed8-9f93-f74ccfc09c85 ro quiet
  65. echo 'Loading initial ramdisk ...'
  66. initrd /boot/initrd.img-3.2.0-3-amd64
  67. }
  68. menuentry 'Debian GNU/Linux, with Linux 3.2.0-3-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os {
  69. insmod gzio
  70.  
  71. echo 'Loading Linux 3.2.0-3-amd64 ...'
  72. linux /boot/vmlinuz-3.2.0-3-amd64 root=UUID=4ad17584-97b2-4ed8-9f93-f74ccfc09c85 ro single
  73. echo 'Loading initial ramdisk ...'
  74. initrd /boot/initrd.img-3.2.0-3-amd64
  75. }
  76. ### END /etc/grub.d/10_linux ###
  77.  
  78. ### BEGIN /etc/grub.d/20_linux_xen ###
  79. ### END /etc/grub.d/20_linux_xen ###
  80.  
  81. ### BEGIN /etc/grub.d/20_memtest86+ ###
  82. menuentry "Memory test (memtest86+)" {
  83.  
  84. linux16 /boot/memtest86+.bin
  85. }
  86. menuentry "Memory test (memtest86+, serial console 115200)" {
  87.  
  88. linux16 /boot/memtest86+.bin console=ttyS0,115200n8
  89. }
  90. menuentry "Memory test (memtest86+, experimental multiboot)" {
  91.  
  92. multiboot /boot/memtest86+_multiboot.bin
  93. }
  94. menuentry "Memory test (memtest86+, serial console 115200, experimental multiboot)" {
  95.  
  96. multiboot /boot/memtest86+_multiboot.bin console=ttyS0,115200n8
  97. }
  98. ### END /etc/grub.d/20_memtest86+ ###
  99.  
  100. ### BEGIN /etc/grub.d/30_os-prober ###
  101. menuentry "Windows 7 (loader) (on /dev/sda1)" --class windows --class os {
  102. insmod part_msdos
  103. insmod ntfs
  104. set root='(hd1,msdos1)'
  105. search --no-floppy --fs-uuid --set=root 881AC8D81AC8C482
  106. chainloader +1
  107. }
  108. ### END /etc/grub.d/30_os-prober ###
  109.  
  110. ### BEGIN /etc/grub.d/40_custom ###
  111. # This file provides an easy way to add custom menu entries. Simply type the
  112. # menu entries you want to add after this comment. Be careful not to change
  113. # the 'exec tail' line above.
  114. ### END /etc/grub.d/40_custom ###
  115.  
  116. ### BEGIN /etc/grub.d/41_custom ###
  117. if [ -f $prefix/custom.cfg ]; then
  118. source $prefix/custom.cfg;
  119. fi
  120. ### END /etc/grub.d/41_custom ###
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement