Guest User

Untitled

a guest
Jan 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.36 KB | None | 0 0
  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 $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 recordfail {
  29. set recordfail=1
  30. if [ -n ${have_grubenv} ]; then if [ -z ${boot_once} ]; then save_env recordfail; fi; fi
  31. }
  32. insmod ext2
  33. set root='(hd0,5)'
  34. search --no-floppy --fs-uuid --set c40f422f-65d3-4022-9e76-f67a62f2add9
  35. if loadfont /usr/share/grub/unicode.pf2 ; then
  36. set gfxmode=1024x768
  37. set gfxpayload=keep
  38. insmod gfxterm
  39. insmod vbe
  40. if terminal_output gfxterm ; then true ; else
  41. # For backward compatibility with versions of terminal.mod that don't
  42. # understand terminal_output
  43. terminal gfxterm
  44. fi
  45. fi
  46. insmod ext2
  47. set root='(hd0,5)'
  48. search --no-floppy --fs-uuid --set c40f422f-65d3-4022-9e76-f67a62f2add9
  49. set locale_dir=($root)/boot/grub/locale
  50. set lang=es
  51. insmod gettext
  52. if [ ${recordfail} = 1 ]; then
  53. set timeout=-1
  54. else
  55. set timeout=10
  56. fi
  57. ### END /etc/grub.d/00_header ###
  58.  
  59. ### BEGIN /etc/grub.d/05_debian_theme ###
  60. set menu_color_normal=white/black
  61. set menu_color_highlight=black/light-gray
  62. ### END /etc/grub.d/05_debian_theme ###
  63.  
  64. ### BEGIN /etc/grub.d/10_linux ###
  65. menuentry 'Ubuntu, with Linux 2.6.38' --class ubuntu --class gnu-linux --class gnu --class os {
  66. recordfail
  67. insmod ext2
  68. set root='(hd0,5)'
  69. search --no-floppy --fs-uuid --set c40f422f-65d3-4022-9e76-f67a62f2add9
  70. linux /boot/vmlinuz-2.6.38 root=UUID=c40f422f-65d3-4022-9e76-f67a62f2add9 ro text splash nomodeset vga=791
  71. initrd /boot/initrd.img-2.6.38
  72. }
  73. menuentry 'Ubuntu, with Linux 2.6.38 (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
  74. recordfail
  75. insmod ext2
  76. set root='(hd0,5)'
  77. search --no-floppy --fs-uuid --set c40f422f-65d3-4022-9e76-f67a62f2add9
  78. echo 'Loading Linux 2.6.38 ...'
  79. linux /boot/vmlinuz-2.6.38 root=UUID=c40f422f-65d3-4022-9e76-f67a62f2add9 ro single
  80. echo 'Loading initial ramdisk ...'
  81. initrd /boot/initrd.img-2.6.38
  82. }
  83. ### END /etc/grub.d/10_linux ###
  84.  
  85. ### BEGIN /etc/grub.d/20_memtest86+ ###
  86. menuentry "Memory test (memtest86+)" {
  87. insmod ext2
  88. set root='(hd0,5)'
  89. search --no-floppy --fs-uuid --set c40f422f-65d3-4022-9e76-f67a62f2add9
  90. linux16 /boot/memtest86+.bin
  91. }
  92. menuentry "Memory test (memtest86+, serial console 115200)" {
  93. insmod ext2
  94. set root='(hd0,5)'
  95. search --no-floppy --fs-uuid --set c40f422f-65d3-4022-9e76-f67a62f2add9
  96. linux16 /boot/memtest86+.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/sda2)" {
  102. insmod ntfs
  103. set root='(hd0,2)'
  104. search --no-floppy --fs-uuid --set 1A2C10142C0FEA19
  105. chainloader +1
  106. }
  107. ### END /etc/grub.d/30_os-prober ###
  108.  
  109. ### BEGIN /etc/grub.d/40_custom ###
  110. # This file provides an easy way to add custom menu entries. Simply type the
  111. # menu entries you want to add after this comment. Be careful not to change
  112. # the 'exec tail' line above.
  113. ### END /etc/grub.d/40_custom ###
Add Comment
Please, Sign In to add comment