Guest User

Untitled

a guest
Mar 13th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. # Config file for GRUB2 - The GNU GRand Unified Bootloader
  2. # /boot/grub/grub.cfg
  3.  
  4. # DEVICE NAME CONVERSIONS
  5. #
  6. # Linux Grub
  7. # -------------------------
  8. # /dev/fd0 (fd0)
  9. # /dev/sda (hd0)
  10. # /dev/sdb2 (hd1,2)
  11. # /dev/sda3 (hd0,3)
  12. #
  13. if loadfont /usr/share/grub/unicode.pf2 ; then
  14. set gfxmode="1024x768x32"
  15. insmod gfxterm
  16. insmod vbe
  17. terminal_output gfxterm
  18. if terminal_output gfxterm; then true ; else
  19. terminal gfxterm
  20. fi
  21. fi
  22. insmod tga
  23.  
  24. # Timeout for menu
  25. set timeout=5
  26.  
  27. # Set default boot entry as Entry 0
  28. set default=0
  29.  
  30. # (0) Arch Linux
  31. menuentry "Arch Linux" {
  32. set root=(hd0,6)
  33. linux /vmlinuz26 root=/dev/sda6 ro vga=795
  34. initrd /kernel26.img
  35. }
  36.  
  37. ## (1) Windows
  38. menuentry "Windows" {
  39. set root=(hd0,1)
  40. chainloader +1
  41. }
  42.  
  43. insmod vbe
  44. insmod biosdisk
  45. insmod pc
  46. insmod font
  47. insmod gfxterm
  48. insmod videotest
  49. insmod tga
  50. insmod png
Add Comment
Please, Sign In to add comment