Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. # This sets the default entry to boot.
  2. # Remember that GRUB counts from 0, so 1 is the second entry.
  3.  
  4. default 0
  5.  
  6. # This sets the length of time in seconds that grub will wait for the user to select an OS
  7. # before it boots the default on. I reccommend at least 15 seconds.
  8.  
  9. timeout 15
  10.  
  11. # Enter the entry for DSL here. Something like this.
  12.  
  13. title DSL
  14. kernel /boot/linux24 root=/dev/hda1 quiet vga=normal noacpi noapm nodma noscsi frugal
  15.  
  16. title DSL fb800x600
  17. kernel /boot/linux24 root=/dev/hda1 quiet vga=788 noacpi noapm nodma noscsi frugal
  18.  
  19. title DSL fb1024x768
  20. kernel /boot/linux24 root=/dev/hda1 quiet vga=791 noacpi noapm nodma noscsi frugal
  21.  
  22. title DSL fb1280x1024
  23. kernel /boot/linux24 root=/dev/hda1 quiet vga=794 noacpi noapm nodma noscsi frugal
  24.  
  25. #title DSL with toram, mydsl, restore, hostname, and passwords
  26. #kernel /boot/linux24 root=/dev/hda1 quiet vga=normal noacpi noapm noscsi frugal dma toram mydsl=hda5 restore=hda5 host=DSL1 secure
  27.  
  28. #title DSL with XFree86
  29. #kernel /boot/linux24 root=/dev/hda1 quiet vga=normal noacpi noapm noscsi frugal dma toram mydsl=hda5/xfree restore=hda6 host=DSL1 secure
  30.  
  31. #title DSL with mydsl, restore, persistentancy, hostname, and passwords
  32. #kernel /boot/linux24 root=/dev/hda1 quiet vga=normal noacpi noapm noscsi frugal dma toram mydsl=hda3 restore=hda3 home=hda3 opt=hda3 host=DSL1 secure
  33.  
  34. #title DSL Runlevel 2
  35. #kernel /boot/linux24 root=/dev/hda1 quiet vga=normal noacpi noapm noscsi nodma frugal 2 base norestore
  36.  
  37. #title DSL Check filesystem(s)
  38. #kernel /boot/linux24 root=/dev/hda1 quiet vga=normal noacpi noapm noscsi nodma frugal 2 toram legacy base norestore checkfs
  39.  
  40. #title Windows
  41. #root (hd0,0)
  42. #chainloader +1
  43. #makeactive
  44. #boot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement