Advertisement
Guest User

Lighthouse pup Grub 2 boot options.

a guest
May 14th, 2011
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. #This is a config file to get grub to boot puppy linux.
  2. menuentry 'LightPupG5.03 Boot OPTIONS' {
  3. insmod
  4. set root
  5. linux
  6. intird
  7. }
  8. menuentry '01. Lighthouse Linux 5.03' {
  9. insmod ext2
  10. set root='(hd0,8)'
  11. linux /LightpupG5.03/vmlinuz psubdir=LightpupG5.03 puppy loglevel=3 nmi_watchdog=0 xforcevesa nomodeset
  12. initrd /LightpupG5.03/initrd.gz
  13. }
  14. menuentry '02. acpi=off Default on for PCs >2001, may give boot/shutdown Probs' {
  15. insmod ext2
  16. set root='(hd0,8)'
  17. linux /LightpupG5.03/vmlinuz psubdir=LightpupG5.03 puppy loglevel=3 nmi_watchdog=0 xforcevesa nomodeset acpi=off
  18. initrd /LightpupG5.03/initrd.gz
  19. }
  20. menuentry '03. pfix=ram Run totally in RAM ignore saved sessions' {
  21. insmod ext2
  22. set root='(hd0,3)'
  23. linux /LightpupG5.03/vmlinuz pdev1=sda3 psubdir=LightpupG5.03 loglevel=3 nmi_watchdog=0 xforcevesa nomodeset pfix=ram
  24. initrd /LightpupG5.03initrd.gz
  25. }
  26. menuentry '04. pfix=nox commandline only, do not start x' {
  27. insmod ext2
  28. set root='(hd0,8)'
  29. linux /LightpupG5.03/vmlinuz psubdir=LightpupG5.03 loglevel=3 nmi_watchdog=0 xforcevesa nomodeset pfix=nox
  30. initrd /LightpupG5.03/initrd.gz
  31. }
  32. menuentry '05. pfix=copy coppy .sfs files to RAM (slower boot, faster running)' {
  33. insmod ext2
  34. set root='(hd0,8)'
  35. linux /LightpupG5.03/vmlinuz psubdir=LightpupG5.03 loglevel=3 nmi_watchdog=0 xforcevesa nomodeset pfix=copy
  36. initrd /LightpupG5.03/initrd.gz
  37. }
  38. menuentry '06. pfix=nocopy do not copy .sfs to RAM (faster boot, slower running' {
  39. insmod ext2
  40. set root='(hd0,8)'
  41. linux /LightpupG5.03/vmlinuz psubdir=LightpupG5.03 puppy pfix=nocopy
  42. initrd /LightpupG5.03/initrd.gz
  43. }
  44. menuentry '07. pfix=fsck do filesystem check on LHPsave (and host partition)' {
  45. insmod ext2
  46. set root='(hd0,3)'
  47. linux /LightpupG5.03/vmlinuz pdev1=sda3 psubdir=LightpupG5.03 loglevel=3 nmi_watchdog=0 xforcevesa nomodeset pfix=fsck
  48. initrd /lLightpupG5.03/initrd.gz
  49. }
  50. menuentry '08. pfix=clean file cleanup (simulate version upgrade)' {
  51. insmod ext2
  52. set root='(hd0,8)'
  53. linux /LightpupG5.03/vmlinuz psubdir=LightpupG5.03 puppy pfix=clean
  54. initrd /LightpupG5.03/initrd.gz
  55. }
  56. menuentry '09. pfix=purge more radical file cleanup (to fix broken systems)' {
  57. insmod ext2
  58. set root='(hd0,8)'
  59. linux /LightpupG5.03/vmlinuz psubdir=LightpupG5.03 loglevel=3 nmi_watchdog=0 xforcevesa nomodeset pfix=purge
  60. initrd /LightpupG5.03/initrd.gz
  61. }
  62. menuentry '10. pfix=<n> Number of save files to ignore (need to press e then type this commnad)' {
  63. insmod
  64. set root
  65. linux
  66. intird
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement