Guest User

Untitled

a guest
Jul 21st, 2012
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. # Config file for GRUB - The GNU GRand Unified Bootloader
  2. # /boot/grub/menu.lst
  3.  
  4. # general configuration:
  5. timeout 5
  6. default 0
  7. color light-blue/black light-cyan/blue
  8.  
  9. # boot sections follow
  10. # each is implicitly numbered from 0 in the order of appearance below
  11. #
  12. # TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel line.
  13. #
  14. #-*
  15.  
  16. # (0) Arch Linux
  17. title Arch Linux
  18. root (hd0,0)
  19. kernel /vmlinuz-linux root=/dev/disk/by-uuid/c035d5b6-e871-45a1-ae5c-3848d71c2d90 loglevel=3 ro quiet splash resume=/dev/disk/by-uuid/d9d7caaf-1382-48f9-932b-0fb9fdb15771 i915.i915_enable_rc6=1 i915.i915_enable_fbc=1 i915.semaphores=1 pcie_aspm=force ipv6.disable=1
  20. initrd /initramfs-linux.img
  21.  
  22. # (1) Arch Linux fallback (useful if you change your hard disk/mainboard)
  23. title Arch Linux Fallback
  24. root (hd0,0)
  25. kernel /vmlinuz-linux root=/dev/disk/by-uuid/c035d5b6-e871-45a1-ae5c-3848d71c2d90 loglevel=3 ro quiet
  26. initrd /initramfs-linux-fallback.img
  27.  
  28. # (2) Optional entry for the system on sda1
  29. #title sda1
  30. #rootnoverify (hd0,0)
  31. #makeactive
  32. #chainloader +1
Advertisement
Add Comment
Please, Sign In to add comment