Advertisement
Guest User

Untitled

a guest
Jul 6th, 2013
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.09 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="3"
  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. insmod part_msdos
  36. insmod ext2
  37. set root='(hd0,msdos5)'
  38. search --no-floppy --fs-uuid --set=root 863b52e2-f168-4f60-85a0-e8f86111d477
  39. if loadfont /usr/share/grub/unicode.pf2 ; then
  40. set gfxmode=1024x768
  41. load_video
  42. insmod gfxterm
  43. insmod part_msdos
  44. insmod ext2
  45. set root='(hd0,msdos5)'
  46. search --no-floppy --fs-uuid --set=root 863b52e2-f168-4f60-85a0-e8f86111d477
  47. set locale_dir=($root)/boot/grub/locale
  48. set lang=it_IT
  49. insmod gettext
  50. fi
  51. terminal_output gfxterm
  52. set timeout=10
  53. ### END /etc/grub.d/00_header ###
  54.  
  55. ### BEGIN /etc/grub.d/05_debian_theme ###
  56. insmod part_msdos
  57. insmod ext2
  58. set root='(hd0,msdos5)'
  59. search --no-floppy --fs-uuid --set=root 863b52e2-f168-4f60-85a0-e8f86111d477
  60. insmod png
  61. if background_image /usr/share/images/desktop-base/joy-grub.png; then
  62. set color_normal=white/black
  63. set color_highlight=black/white
  64. else
  65. set menu_color_normal=cyan/blue
  66. set menu_color_highlight=white/blue
  67. fi
  68. ### END /etc/grub.d/05_debian_theme ###
  69.  
  70. ### BEGIN /etc/grub.d/10_linux ###
  71. menuentry 'Debian GNU/Linux, con Linux 3.2.0-4-amd64' --class debian --class gnu-linux --class gnu --class os {
  72. load_video
  73. insmod gzio
  74. insmod part_msdos
  75. insmod ext2
  76. set root='(hd0,msdos5)'
  77. search --no-floppy --fs-uuid --set=root 863b52e2-f168-4f60-85a0-e8f86111d477
  78. echo 'Caricamento Linux 3.2.0-4-amd64...'
  79. linux /boot/vmlinuz-3.2.0-4-amd64 root=UUID=863b52e2-f168-4f60-85a0-e8f86111d477 ro vga=773 quiet
  80. echo 'Caricamento ramdisk iniziale...'
  81. initrd /boot/initrd.img-3.2.0-4-amd64
  82. }
  83. menuentry 'Debian GNU/Linux, con Linux 3.2.0-4-amd64 (modalità ripristino)' --class debian --class gnu-linux --class gnu --class os {
  84. load_video
  85. insmod gzio
  86. insmod part_msdos
  87. insmod ext2
  88. set root='(hd0,msdos5)'
  89. search --no-floppy --fs-uuid --set=root 863b52e2-f168-4f60-85a0-e8f86111d477
  90. echo 'Caricamento Linux 3.2.0-4-amd64...'
  91. linux /boot/vmlinuz-3.2.0-4-amd64 root=UUID=863b52e2-f168-4f60-85a0-e8f86111d477 ro single vga=773
  92. echo 'Caricamento ramdisk iniziale...'
  93. initrd /boot/initrd.img-3.2.0-4-amd64
  94. }
  95. ### END /etc/grub.d/10_linux ###
  96.  
  97. ### BEGIN /etc/grub.d/20_linux_xen ###
  98. ### END /etc/grub.d/20_linux_xen ###
  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='(hd0,msdos1)'
  105. search --no-floppy --fs-uuid --set=root FC1A11461A10FEF8
  106. chainloader +1
  107. }
  108. menuentry "Arch (on /dev/sda6)" --class gnu-linux --class gnu --class os {
  109. insmod part_msdos
  110. insmod ext2
  111. set root='(hd0,msdos6)'
  112. search --no-floppy --fs-uuid --set=root 2049248f-1f4f-4683-b6bd-17d5f9951a8f
  113. linux /boot/vmlinuz-linux root=/dev/sda6 ro nomodeset
  114. initrd /boot/initramfs-linux.img
  115. }
  116. menuentry "Arch kernel-lts (on /dev/sda6)" --class gnu-linux --class gnu --class os {
  117. insmod part_msdos
  118. insmod ext2
  119. set root='(hd0,msdos6)'
  120. search --no-floppy --fs-uuid --set=root 2049248f-1f4f-4683-b6bd-17d5f9951a8f
  121. linux /boot/vmlinuz-linux-lts root=/dev/sda6 ro nomodeset
  122. initrd /boot/initramfs-linux-lts.img
  123. }
  124. ### END /etc/grub.d/30_os-prober ###
  125.  
  126. ### BEGIN /etc/grub.d/40_custom ###
  127. # This file provides an easy way to add custom menu entries. Simply type the
  128. # menu entries you want to add after this comment. Be careful not to change
  129. # the 'exec tail' line above.
  130. ### END /etc/grub.d/40_custom ###
  131.  
  132. ### BEGIN /etc/grub.d/41_custom ###
  133. if [ -f $prefix/custom.cfg ]; then
  134. source $prefix/custom.cfg;
  135. fi
  136. ### END /etc/grub.d/41_custom ###
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement