Paste Code
Paste Blends
Paste Images
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s /boot/grub/grubenv ]; then
have_grubenv=true
load_env
fi
set default="0"
if [ ${prev_saved_entry} ]; then
saved_entry=${prev_saved_entry}
save_env saved_entry
prev_saved_entry=
save_env prev_saved_entry
fi
insmod ext2
set root=(hd0,5)
search --no-floppy --fs-uuid --set b47f657a-1388-4d39-bc0b-1a30e3fd5d14
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=640x480
insmod gfxterm
insmod vbe
if terminal_output gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don't
# understand terminal_output
terminal gfxterm
fi
fi
if [ ${recordfail} = 1 ]; then
set timeout=-1
else
set timeout=10
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/white
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry "Ubuntu, Linux 2.6.31-20-generic" {
recordfail=1
if [ -n ${have_grubenv} ]; then save_env recordfail; fi
set quiet=1
insmod ext2
set root=(hd0,5)
search --no-floppy --fs-uuid --set b47f657a-1388-4d39-bc0b-1a30e3fd5d14
linux /boot/vmlinuz-2.6.31-20-generic root=UUID=b47f657a-1388-4d39-bc0b-1a30e3fd5d14 ro quiet splash
initrd /boot/initrd.img-2.6.31-20-generic
}
menuentry "Ubuntu, Linux 2.6.31-20-generic (recovery mode)" {
recordfail=1
if [ -n ${have_grubenv} ]; then save_env recordfail; fi
insmod ext2
set root=(hd0,5)
search --no-floppy --fs-uuid --set b47f657a-1388-4d39-bc0b-1a30e3fd5d14
linux /boot/vmlinuz-2.6.31-20-generic root=UUID=b47f657a-1388-4d39-bc0b-1a30e3fd5d14 ro single
initrd /boot/initrd.img-2.6.31-20-generic
}
menuentry "Ubuntu, Linux 2.6.31-14-generic" {
recordfail=1
if [ -n ${have_grubenv} ]; then save_env recordfail; fi
set quiet=1
insmod ext2
set root=(hd0,5)
search --no-floppy --fs-uuid --set b47f657a-1388-4d39-bc0b-1a30e3fd5d14
linux /boot/vmlinuz-2.6.31-14-generic root=UUID=b47f657a-1388-4d39-bc0b-1a30e3fd5d14 ro quiet splash
initrd /boot/initrd.img-2.6.31-14-generic
}
menuentry "Ubuntu, Linux 2.6.31-14-generic (recovery mode)" {
recordfail=1
if [ -n ${have_grubenv} ]; then save_env recordfail; fi
insmod ext2
set root=(hd0,5)
search --no-floppy --fs-uuid --set b47f657a-1388-4d39-bc0b-1a30e3fd5d14
linux /boot/vmlinuz-2.6.31-14-generic root=UUID=b47f657a-1388-4d39-bc0b-1a30e3fd5d14 ro single
initrd /boot/initrd.img-2.6.31-14-generic
}
menuentry "Ubuntu, Linux 2.6.31-9-rt" {
recordfail=1
if [ -n ${have_grubenv} ]; then save_env recordfail; fi
set quiet=1
insmod ext2
set root=(hd0,5)
search --no-floppy --fs-uuid --set b47f657a-1388-4d39-bc0b-1a30e3fd5d14
linux /boot/vmlinuz-2.6.31-9-rt root=UUID=b47f657a-1388-4d39-bc0b-1a30e3fd5d14 ro quiet splash
initrd /boot/initrd.img-2.6.31-9-rt
}
menuentry "Ubuntu, Linux 2.6.31-9-rt (recovery mode)" {
recordfail=1
if [ -n ${have_grubenv} ]; then save_env recordfail; fi
insmod ext2
set root=(hd0,5)
search --no-floppy --fs-uuid --set b47f657a-1388-4d39-bc0b-1a30e3fd5d14
linux /boot/vmlinuz-2.6.31-9-rt root=UUID=b47f657a-1388-4d39-bc0b-1a30e3fd5d14 ro single
initrd /boot/initrd.img-2.6.31-9-rt
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
linux16 /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Windows Vista (loader) (on /dev/sda2)" {
insmod ntfs
set root=(hd0,2)
search --no-floppy --fs-uuid --set 3cda2c6eda2c271c
chainloader +1
}
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
  1. #
  2. # DO NOT EDIT THIS FILE
  3. #
  4. # It is automatically generated by /usr/sbin/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 /boot/grub/grubenv ]; then
  10.   have_grubenv=true
  11.   load_env
  12. fi
  13. set default="0"
  14. if [ ${prev_saved_entry} ]; then
  15.   saved_entry=${prev_saved_entry}
  16.   save_env saved_entry
  17.   prev_saved_entry=
  18.   save_env prev_saved_entry
  19. fi
  20. insmod ext2
  21. set root=(hd0,5)
  22. search --no-floppy --fs-uuid --set b47f657a-1388-4d39-bc0b-1a30e3fd5d14
  23. if loadfont /usr/share/grub/unicode.pf2 ; then
  24.   set gfxmode=640x480
  25.   insmod gfxterm
  26.   insmod vbe
  27.   if terminal_output gfxterm ; then true ; else
  28.     # For backward compatibility with versions of terminal.mod that don't
  29.     # understand terminal_output
  30.     terminal gfxterm
  31.   fi
  32. fi
  33. if [ ${recordfail} = 1 ]; then
  34.   set timeout=-1
  35. else
  36.   set timeout=10
  37. fi
  38. ### END /etc/grub.d/00_header ###
  39.  
  40. ### BEGIN /etc/grub.d/05_debian_theme ###
  41. set menu_color_normal=white/black
  42. set menu_color_highlight=black/white
  43. ### END /etc/grub.d/05_debian_theme ###
  44.  
  45. ### BEGIN /etc/grub.d/10_linux ###
  46. menuentry "Ubuntu, Linux 2.6.31-20-generic" {
  47.         recordfail=1
  48.         if [ -n ${have_grubenv} ]; then save_env recordfail; fi
  49.         set quiet=1
  50.         insmod ext2
  51.         set root=(hd0,5)
  52.         search --no-floppy --fs-uuid --set b47f657a-1388-4d39-bc0b-1a30e3fd5d14
  53.         linux   /boot/vmlinuz-2.6.31-20-generic root=UUID=b47f657a-1388-4d39-bc0b-1a30e3fd5d14 ro   quiet splash
  54.         initrd  /boot/initrd.img-2.6.31-20-generic
  55. }
  56. menuentry "Ubuntu, Linux 2.6.31-20-generic (recovery mode)" {
  57.         recordfail=1
  58.         if [ -n ${have_grubenv} ]; then save_env recordfail; fi
  59.         insmod ext2
  60.         set root=(hd0,5)
  61.         search --no-floppy --fs-uuid --set b47f657a-1388-4d39-bc0b-1a30e3fd5d14
  62.         linux   /boot/vmlinuz-2.6.31-20-generic root=UUID=b47f657a-1388-4d39-bc0b-1a30e3fd5d14 ro single
  63.         initrd  /boot/initrd.img-2.6.31-20-generic
  64. }
  65. menuentry "Ubuntu, Linux 2.6.31-14-generic" {
  66.         recordfail=1
  67.         if [ -n ${have_grubenv} ]; then save_env recordfail; fi
  68.         set quiet=1
  69.         insmod ext2
  70.         set root=(hd0,5)
  71.         search --no-floppy --fs-uuid --set b47f657a-1388-4d39-bc0b-1a30e3fd5d14
  72.         linux   /boot/vmlinuz-2.6.31-14-generic root=UUID=b47f657a-1388-4d39-bc0b-1a30e3fd5d14 ro   quiet splash
  73.         initrd  /boot/initrd.img-2.6.31-14-generic
  74. }
  75. menuentry "Ubuntu, Linux 2.6.31-14-generic (recovery mode)" {
  76.         recordfail=1
  77.         if [ -n ${have_grubenv} ]; then save_env recordfail; fi
  78.         insmod ext2
  79.         set root=(hd0,5)
  80.         search --no-floppy --fs-uuid --set b47f657a-1388-4d39-bc0b-1a30e3fd5d14
  81.         linux   /boot/vmlinuz-2.6.31-14-generic root=UUID=b47f657a-1388-4d39-bc0b-1a30e3fd5d14 ro single
  82.         initrd  /boot/initrd.img-2.6.31-14-generic
  83. }
  84. menuentry "Ubuntu, Linux 2.6.31-9-rt" {
  85.         recordfail=1
  86.         if [ -n ${have_grubenv} ]; then save_env recordfail; fi
  87.         set quiet=1
  88.         insmod ext2
  89.         set root=(hd0,5)
  90.         search --no-floppy --fs-uuid --set b47f657a-1388-4d39-bc0b-1a30e3fd5d14
  91.         linux   /boot/vmlinuz-2.6.31-9-rt root=UUID=b47f657a-1388-4d39-bc0b-1a30e3fd5d14 ro   quiet splash
  92.         initrd  /boot/initrd.img-2.6.31-9-rt
  93. }
  94. menuentry "Ubuntu, Linux 2.6.31-9-rt (recovery mode)" {
  95.         recordfail=1
  96.         if [ -n ${have_grubenv} ]; then save_env recordfail; fi
  97.         insmod ext2
  98.         set root=(hd0,5)
  99.         search --no-floppy --fs-uuid --set b47f657a-1388-4d39-bc0b-1a30e3fd5d14
  100.         linux   /boot/vmlinuz-2.6.31-9-rt root=UUID=b47f657a-1388-4d39-bc0b-1a30e3fd5d14 ro single
  101.         initrd  /boot/initrd.img-2.6.31-9-rt
  102. }
  103. ### END /etc/grub.d/10_linux ###
  104.  
  105. ### BEGIN /etc/grub.d/20_memtest86+ ###
  106. menuentry "Memory test (memtest86+)" {
  107.         linux16 /boot/memtest86+.bin
  108. }
  109. menuentry "Memory test (memtest86+, serial console 115200)" {
  110.         linux16 /boot/memtest86+.bin console=ttyS0,115200n8
  111. }
  112. ### END /etc/grub.d/20_memtest86+ ###
  113.  
  114. ### BEGIN /etc/grub.d/30_os-prober ###
  115. menuentry "Windows Vista (loader) (on /dev/sda2)" {
  116.         insmod ntfs
  117.         set root=(hd0,2)
  118.         search --no-floppy --fs-uuid --set 3cda2c6eda2c271c
  119.         chainloader +1
  120. }
  121. ### END /etc/grub.d/30_os-prober ###
  122.  
  123. ### BEGIN /etc/grub.d/40_custom ###
  124. # This file provides an easy way to add custom menu entries.  Simply type the
  125. # menu entries you want to add after this comment.  Be careful not to change
  126. # the 'exec tail' line above.
  127. ### END /etc/grub.d/40_custom ###
go to heaven