Advertisement
Guest User

Untitled

a guest
Nov 20th, 2011
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.97 KB | None | 0 0
  1. # cat /boot/grub/grub.cfg
  2. #
  3. # DO NOT EDIT THIS FILE
  4. #
  5. # It is automatically generated by grub-mkconfig using templates
  6. # from /etc/grub.d and settings from /etc/default/grub
  7. #
  8.  
  9. ### BEGIN /etc/grub.d/00_header ###
  10. if [ -s $prefix/grubenv ]; then
  11. load_env
  12. fi
  13. set default="0"
  14. if [ "${prev_saved_entry}" ]; then
  15. set saved_entry="${prev_saved_entry}"
  16. save_env saved_entry
  17. set prev_saved_entry=
  18. save_env prev_saved_entry
  19. set boot_once=true
  20. fi
  21.  
  22. function savedefault {
  23. if [ -z "${boot_once}" ]; then
  24. saved_entry="${chosen}"
  25. save_env saved_entry
  26. fi
  27. }
  28.  
  29. function load_video {
  30. insmod vbe
  31. insmod vga
  32. insmod video_bochs
  33. insmod video_cirrus
  34. }
  35.  
  36. insmod part_msdos
  37. insmod ext2
  38. set root='(hd0,msdos3)'
  39. search --no-floppy --fs-uuid --set d5df9b15-a409-4bf0-9ae3-21e8fa24e0ba
  40. if loadfont /usr/share/grub/unicode.pf2 ; then
  41. set gfxmode=640x480
  42. load_video
  43. insmod gfxterm
  44. fi
  45. terminal_output gfxterm
  46. insmod part_msdos
  47. insmod ext2
  48. set root='(hd0,msdos1)'
  49. search --no-floppy --fs-uuid --set abb50236-7ea2-40ec-8b1a-52c4ee01ff7d
  50. set locale_dir=($root)/grub/locale
  51. set lang=en
  52. insmod gettext
  53. set timeout=5
  54. ### END /etc/grub.d/00_header ###
  55.  
  56. ### BEGIN /etc/grub.d/05_debian_theme ###
  57. set menu_color_normal=cyan/blue
  58. set menu_color_highlight=white/blue
  59. ### END /etc/grub.d/05_debian_theme ###
  60.  
  61. ### BEGIN /etc/grub.d/10_linux ###
  62. menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-686' --class debian --class gnu-linux --class gnu --class os {
  63. insmod part_msdos
  64. insmod ext2
  65. set root='(hd0,msdos1)'
  66. search --no-floppy --fs-uuid --set abb50236-7ea2-40ec-8b1a-52c4ee01ff7d
  67. echo 'Loading Linux 2.6.32-5-686 ...'
  68. linux /vmlinuz-2.6.32-5-686 root=UUID=d5df9b15-a409-4bf0-9ae3-21e8fa24e0ba ro quiet
  69. echo 'Loading initial ramdisk ...'
  70. initrd /initrd.img-2.6.32-5-686
  71. }
  72. menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-686 (recovery mode)' --class debian --class gnu-linux --class gnu --class os {
  73. insmod part_msdos
  74. insmod ext2
  75. set root='(hd0,msdos1)'
  76. search --no-floppy --fs-uuid --set abb50236-7ea2-40ec-8b1a-52c4ee01ff7d
  77. echo 'Loading Linux 2.6.32-5-686 ...'
  78. linux /vmlinuz-2.6.32-5-686 root=UUID=d5df9b15-a409-4bf0-9ae3-21e8fa24e0ba ro single
  79. echo 'Loading initial ramdisk ...'
  80. initrd /initrd.img-2.6.32-5-686
  81. }
  82. ### END /etc/grub.d/10_linux ###
  83.  
  84. ### BEGIN /etc/grub.d/20_linux_xen ###
  85. ### END /etc/grub.d/20_linux_xen ###
  86.  
  87. ### BEGIN /etc/grub.d/30_os-prober ###
  88. ### END /etc/grub.d/30_os-prober ###
  89.  
  90. ### BEGIN /etc/grub.d/40_custom ###
  91. # This file provides an easy way to add custom menu entries. Simply type the
  92. # menu entries you want to add after this comment. Be careful not to change
  93. # the 'exec tail' line above.
  94. ### END /etc/grub.d/40_custom ###
  95.  
  96. ### BEGIN /etc/grub.d/41_custom ###
  97. if [ -f $prefix/custom.cfg ]; then
  98. source $prefix/custom.cfg;
  99. fi
  100. ### END /etc/grub.d/41_custom ###
  101.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement