Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.06 KB | None | 0 0
  1. _________________________________________
  2. ( "OK I was thinking we = Mint how ego of )
  3. ( me" )
  4. ( )
  5. ( Husse Aug 19 2007 )
  6. -----------------------------------------
  7. o
  8. o
  9. ___
  10. {~._.~}
  11. ( Y )
  12. ()~*~()
  13. (_)-(_)
  14. mitchel@mitchel-MS-7599 ~ $ cat /boot/grub/grub.cfg
  15. #
  16. # DO NOT EDIT THIS FILE
  17. #
  18. # It is automatically generated by grub-mkconfig using templates
  19. # from /etc/grub.d and settings from /etc/default/grub
  20. #
  21.  
  22. ### BEGIN /etc/grub.d/00_header ###
  23. if [ -s $prefix/grubenv ]; then
  24. set have_grubenv=true
  25. load_env
  26. fi
  27. set default="0"
  28. if [ "${prev_saved_entry}" ]; then
  29. set saved_entry="${prev_saved_entry}"
  30. save_env saved_entry
  31. set prev_saved_entry=
  32. save_env prev_saved_entry
  33. set boot_once=true
  34. fi
  35.  
  36. function savedefault {
  37. if [ -z "${boot_once}" ]; then
  38. saved_entry="${chosen}"
  39. save_env saved_entry
  40. fi
  41. }
  42.  
  43. function recordfail {
  44. set recordfail=1
  45. if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
  46. }
  47.  
  48. function load_video {
  49. insmod vbe
  50. insmod vga
  51. insmod video_bochs
  52. insmod video_cirrus
  53. }
  54.  
  55. insmod part_msdos
  56. insmod ext2
  57. set root='(/dev/sdc,msdos5)'
  58. search --no-floppy --fs-uuid --set=root c013ac38-3a9d-486b-b8f5-59994bb90353
  59. if loadfont /usr/share/grub/unicode.pf2 ; then
  60. set gfxmode=auto
  61. load_video
  62. insmod gfxterm
  63. fi
  64. terminal_output gfxterm
  65. insmod part_msdos
  66. insmod ext2
  67. set root='(/dev/sdc,msdos5)'
  68. search --no-floppy --fs-uuid --set=root c013ac38-3a9d-486b-b8f5-59994bb90353
  69. set locale_dir=($root)/boot/grub/locale
  70. set lang=en_US
  71. insmod gettext
  72. if [ "${recordfail}" = 1 ]; then
  73. set timeout=-1
  74. else
  75. set timeout=10
  76. fi
  77. ### END /etc/grub.d/00_header ###
  78.  
  79. ### BEGIN /etc/grub.d/05_debian_theme ###
  80. insmod part_msdos
  81. insmod ext2
  82. set root='(/dev/sdc,msdos5)'
  83. search --no-floppy --fs-uuid --set=root c013ac38-3a9d-486b-b8f5-59994bb90353
  84. insmod png
  85. if background_image /boot/grub/linuxmint.png; then
  86. true
  87. else
  88. set menu_color_normal=white/black
  89. set menu_color_highlight=black/light-gray
  90. if background_color 44,0,30; then
  91. clear
  92. fi
  93. fi
  94. ### END /etc/grub.d/05_debian_theme ###
  95.  
  96. ### BEGIN /etc/grub.d/06_mint_theme ###
  97. insmod part_msdos
  98. insmod ext2
  99. set root='(/dev/sdc,msdos5)'
  100. search --no-floppy --fs-uuid --set=root c013ac38-3a9d-486b-b8f5-59994bb90353
  101. insmod png
  102. if background_image /boot/grub/linuxmint.png ; then
  103. set color_normal=white/black
  104. set color_highlight=white/light-gray
  105. else
  106. set menu_color_normal=white/black
  107. set menu_color_highlight=white/light-gray
  108. fi
  109. ### END /etc/grub.d/06_mint_theme ###
  110.  
  111. ### BEGIN /etc/grub.d/10_linux ###
  112. if [ ${recordfail} != 1 ]; then
  113. if [ -e ${prefix}/gfxblacklist.txt ]; then
  114. if hwmatch ${prefix}/gfxblacklist.txt 3; then
  115. if [ ${match} = 0 ]; then
  116. set linux_gfx_mode=keep
  117. else
  118. set linux_gfx_mode=text
  119. fi
  120. else
  121. set linux_gfx_mode=text
  122. fi
  123. else
  124. set linux_gfx_mode=keep
  125. fi
  126. else
  127. set linux_gfx_mode=text
  128. fi
  129. export linux_gfx_mode
  130. if [ "$linux_gfx_mode" != "text" ]; then load_video; fi
  131. menuentry 'Linux Mint 11 64-bit, 2.6.38-8-generic (/dev/sdc5)' --class linuxmint --class gnu-linux --class gnu --class os {
  132. recordfail
  133. set gfxpayload=$linux_gfx_mode
  134. insmod part_msdos
  135. insmod ext2
  136. set root='(/dev/sdc,msdos5)'
  137. search --no-floppy --fs-uuid --set=root c013ac38-3a9d-486b-b8f5-59994bb90353
  138. linux /boot/vmlinuz-2.6.38-8-generic root=UUID=c013ac38-3a9d-486b-b8f5-59994bb90353 ro quiet splash vt.handoff=7
  139. initrd /boot/initrd.img-2.6.38-8-generic
  140. }
  141. menuentry 'Linux Mint 11 64-bit, 2.6.38-8-generic (/dev/sdc5) -- recovery mode' --class linuxmint --class gnu-linux --class gnu --class os {
  142. recordfail
  143. set gfxpayload=$linux_gfx_mode
  144. insmod part_msdos
  145. insmod ext2
  146. set root='(/dev/sdc,msdos5)'
  147. search --no-floppy --fs-uuid --set=root c013ac38-3a9d-486b-b8f5-59994bb90353
  148. echo 'Loading Linux 2.6.38-8-generic ...'
  149. linux /boot/vmlinuz-2.6.38-8-generic root=UUID=c013ac38-3a9d-486b-b8f5-59994bb90353 ro single
  150. echo 'Loading initial ramdisk ...'
  151. initrd /boot/initrd.img-2.6.38-8-generic
  152. }
  153. ### END /etc/grub.d/10_linux ###
  154.  
  155. ### BEGIN /etc/grub.d/10_lupin ###
  156. ### END /etc/grub.d/10_lupin ###
  157.  
  158. ### BEGIN /etc/grub.d/20_linux_xen ###
  159. ### END /etc/grub.d/20_linux_xen ###
  160.  
  161. ### BEGIN /etc/grub.d/20_memtest86+ ###
  162. menuentry "Memory test (memtest86+)" {
  163. insmod part_msdos
  164. insmod ext2
  165. set root='(/dev/sdc,msdos5)'
  166. search --no-floppy --fs-uuid --set=root c013ac38-3a9d-486b-b8f5-59994bb90353
  167. linux16 /boot/memtest86+.bin
  168. }
  169. menuentry "Memory test (memtest86+, serial console 115200)" {
  170. insmod part_msdos
  171. insmod ext2
  172. set root='(/dev/sdc,msdos5)'
  173. search --no-floppy --fs-uuid --set=root c013ac38-3a9d-486b-b8f5-59994bb90353
  174. linux16 /boot/memtest86+.bin console=ttyS0,115200n8
  175. }
  176. ### END /etc/grub.d/20_memtest86+ ###
  177.  
  178. ### BEGIN /etc/grub.d/30_os-prober ###
  179. menuentry "Linux Mint 10 KDE 64-bit, 2.6.35-28-generic (/dev/sda5) (on /dev/sda5)" --class gnu-linux --class gnu --class os {
  180. insmod part_msdos
  181. insmod ext2
  182. set root='(/dev/sda,msdos5)'
  183. search --no-floppy --fs-uuid --set=root f9dd313a-af53-47de-a4be-63a958d3aab6
  184. linux /boot/vmlinuz-2.6.35-28-generic root=UUID=f9dd313a-af53-47de-a4be-63a958d3aab6 ro quiet splash
  185. initrd /boot/initrd.img-2.6.35-28-generic
  186. }
  187. menuentry "Linux Mint 10 KDE 64-bit, 2.6.35-28-generic (/dev/sda5) -- recovery mode (on /dev/sda5)" --class gnu-linux --class gnu --class os {
  188. insmod part_msdos
  189. insmod ext2
  190. set root='(/dev/sda,msdos5)'
  191. search --no-floppy --fs-uuid --set=root f9dd313a-af53-47de-a4be-63a958d3aab6
  192. linux /boot/vmlinuz-2.6.35-28-generic root=UUID=f9dd313a-af53-47de-a4be-63a958d3aab6 ro single
  193. initrd /boot/initrd.img-2.6.35-28-generic
  194. }
  195. menuentry "Linux Mint 10 KDE 64-bit, 2.6.35-22-generic (/dev/sda5) (on /dev/sda5)" --class gnu-linux --class gnu --class os {
  196. insmod part_msdos
  197. insmod ext2
  198. set root='(/dev/sda,msdos5)'
  199. search --no-floppy --fs-uuid --set=root f9dd313a-af53-47de-a4be-63a958d3aab6
  200. linux /boot/vmlinuz-2.6.35-22-generic root=UUID=f9dd313a-af53-47de-a4be-63a958d3aab6 ro quiet splash
  201. initrd /boot/initrd.img-2.6.35-22-generic
  202. }
  203. menuentry "Linux Mint 10 KDE 64-bit, 2.6.35-22-generic (/dev/sda5) -- recovery mode (on /dev/sda5)" --class gnu-linux --class gnu --class os {
  204. insmod part_msdos
  205. insmod ext2
  206. set root='(/dev/sda,msdos5)'
  207. search --no-floppy --fs-uuid --set=root f9dd313a-af53-47de-a4be-63a958d3aab6
  208. linux /boot/vmlinuz-2.6.35-22-generic root=UUID=f9dd313a-af53-47de-a4be-63a958d3aab6 ro single
  209. initrd /boot/initrd.img-2.6.35-22-generic
  210. }
  211. menuentry "Windows 7 (loader) (on /dev/sdb1)" --class windows --class os {
  212. insmod part_msdos
  213. insmod ntfs
  214. set root='(/dev/sdb,msdos1)'
  215. search --no-floppy --fs-uuid --set=root 8E949B3A949B23AD
  216. chainloader +1
  217. }
  218. menuentry "Ubuntu, with Linux 2.6.38-8-generic (on /dev/sdb5)" --class gnu-linux --class gnu --class os {
  219. insmod part_msdos
  220. insmod ext2
  221. set root='(/dev/sdb,msdos5)'
  222. search --no-floppy --fs-uuid --set=root 9e838a9d-e37c-46c0-b8b0-443749f51821
  223. linux /boot/vmlinuz-2.6.38-8-generic root=UUID=9e838a9d-e37c-46c0-b8b0-443749f51821 ro quiet splash vt.handoff=7
  224. initrd /boot/initrd.img-2.6.38-8-generic
  225. }
  226. menuentry "Ubuntu, with Linux 2.6.38-8-generic (recovery mode) (on /dev/sdb5)" --class gnu-linux --class gnu --class os {
  227. insmod part_msdos
  228. insmod ext2
  229. set root='(/dev/sdb,msdos5)'
  230. search --no-floppy --fs-uuid --set=root 9e838a9d-e37c-46c0-b8b0-443749f51821
  231. linux /boot/vmlinuz-2.6.38-8-generic root=UUID=9e838a9d-e37c-46c0-b8b0-443749f51821 ro single
  232. initrd /boot/initrd.img-2.6.38-8-generic
  233. }
  234. ### END /etc/grub.d/30_os-prober ###
  235.  
  236. ### BEGIN /etc/grub.d/40_custom ###
  237. # This file provides an easy way to add custom menu entries. Simply type the
  238. # menu entries you want to add after this comment. Be careful not to change
  239. # the 'exec tail' line above.
  240. ### END /etc/grub.d/40_custom ###
  241.  
  242. ### BEGIN /etc/grub.d/41_custom ###
  243. if [ -f $prefix/custom.cfg ]; then
  244. source $prefix/custom.cfg;
  245. fi
  246. ### END /etc/grub.d/41_custom ###
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement