Advertisement
Guest User

Untitled

a guest
May 27th, 2012
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. # Config file for GRUB - The GNU GRand Unified Bootloader
  2. # /boot/grub/menu.lst
  3.  
  4. # DEVICE NAME CONVERSIONS
  5. #
  6. # Linux Grub
  7. # -------------------------
  8. # /dev/fd0 (fd0)
  9. # /dev/sda (hd0)
  10. # /dev/sdb2 (hd1,1)
  11. # /dev/sda3 (hd0,2)
  12. #
  13.  
  14. # FRAMEBUFFER RESOLUTION SETTINGS
  15. # +-------------------------------------------------+
  16. # | 640x480 800x600 1024x768 1280x1024
  17. # ----+--------------------------------------------
  18. # 256 | 0x301=769 0x303=771 0x305=773 0x307=775
  19. # 32K | 0x310=784 0x313=787 0x316=790 0x319=793
  20. # 64K | 0x311=785 0x314=788 0x317=791 0x31A=794
  21. # 16M | 0x312=786 0x315=789 0x318=792 0x31B=795
  22. # +-------------------------------------------------+
  23. # for more details and different resolutions see
  24. # https://wiki.archlinux.org/index.php/GRUB#Framebuffer_resolution
  25.  
  26. # general configuration:
  27. timeout 5
  28. default 0
  29. color light-blue/black light-cyan/blue
  30.  
  31. # boot sections follow
  32. # each is implicitly numbered from 0 in the order of appearance below
  33. #
  34. # TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel line.
  35. #
  36. #-*
  37.  
  38. # (0) Arch Linux
  39. title Arch Linux
  40. root (hd0,0)
  41. kernel /vmlinuz-linux root=/dev/disk/by-uuid/e929578f-6e28-4e5b-83e0-663cc987218c ro
  42. initrd /initramfs-linux.img
  43.  
  44. # (1) Arch Linux
  45. title Arch Linux Fallback
  46. root (hd0,0)
  47. kernel /vmlinuz-linux root=/dev/disk/by-uuid/e929578f-6e28-4e5b-83e0-663cc987218c ro
  48. initrd /initramfs-linux-fallback.img
  49.  
  50. # (2) Windows
  51. #title Windows
  52. #rootnoverify (hd0,0)
  53. #makeactive
  54. #chainloader +1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement