Guest User

Untitled

a guest
May 24th, 2018
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 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/hda (hd0)
  10. # /dev/hdb2 (hd1,1)
  11. # /dev/hda3 (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.  
  24. # general configuration:
  25. timeout 5
  26. default 0
  27. color light-blue/black light-cyan/blue
  28.  
  29. # boot sections follow
  30. # each is implicitly numbered from 0 in the order of appearance below
  31. #
  32. # TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel line.
  33. #
  34. #-*
  35.  
  36. # (0) Arch Linux Original
  37. title Arch Linux
  38. root (hd0,2)
  39. kernel /boot/vmlinuz26 root=/dev/sda3 resume=/dev/sde2 ro
  40. initrd /boot/kernel26.img
  41.  
  42. # (1) Arch Linux
  43. title Arch Linux Fallback
  44. root (hd0,2)
  45. kernel /boot/vmlinuz26 root=/dev/sda3 resume=/dev/sde2 ro
  46. initrd /boot/kernel26-fallback.img
  47.  
  48. # (2) Arch Linux 0,0
  49. title Arch Linux 0,0
  50. root (hd0,0)
  51. kernel /boot/vmlinuz26 root=/dev/sda3 resume=/dev/sde2 ro
  52. initrd /boot/kernel26.img
  53.  
  54. # (3) Arch Linux 0,1
  55. title Arch Linux 0,1
  56. root (hd0,1)
  57. kernel /boot/vmlinuz26 root=/dev/sda3 resume=/dev/sde2 ro
  58. initrd /boot/kernel26.img
  59.  
  60. # (4) Arch Linux 0,3
  61. title Arch Linux 0,3
  62. root (hd0,3)
  63. kernel /boot/vmlinuz26 root=/dev/sda3 resume=/dev/sde2 ro
  64. initrd /boot/kernel26.img
  65.  
  66.  
  67. # (1) Windows
  68. #title Windows
  69. #rootnoverify (hd0,0)
  70. #makeactive
  71. #chainloader +1
Add Comment
Please, Sign In to add comment