Advertisement
metalx1000

Boot Puppy Linux ISO with Grub

Apr 12th, 2015
1,913
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. set timeout=10
  2. set default=0
  3.  
  4. menuentry 'Puppy ISO' {
  5. set isofile='/puppy.iso'
  6. loopback loop $isofile
  7. linux (loop)/vmlinuz boot=live config fromiso=/dev/sdb1/$isofile
  8. initrd (loop)/initrd.q
  9. }
  10. menuentry 'Puppy ISO 2' {
  11. set isofile='/puppy.iso'
  12. loopback loop $isofile
  13. linux (loop)/vmlinuz boot=live config findiso=$isofile
  14. initrd (loop)/initrd.q
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement