Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. #!/bin/sh
  2. exec tail -n +3 $0
  3. # This file provides an easy way to add custom menu entries. Simply type the
  4. # menu entries you want to add after this comment. Be careful not to change
  5. # the 'exec tail' line above.
  6.  
  7. menuentry "" {
  8. true
  9. }
  10.  
  11. menuentry "Tails 3.13.1 (amd64)" {
  12. set isofile="images/tails-amd64-3.13.1.iso"
  13. loopback loop (hd1,gpt2)/${isofile}
  14. linux (loop)/live/vmlinuz boot=live config findiso=/${isofile} nopersistence noprompt timezone=Etc/UTC block.events_dfl_poll_msecs=1000 splash noautologin module=Tails slab_nomerge slub_debug=FZP mce=0 vsyscall=none page_poison=1 union=aufs quiet
  15. initrd (loop)/live/initrd.img
  16. }
  17.  
  18. menuentry "Ubuntu 18.04 (amd64)" {
  19. set isofile="images/ubuntu-18.04-desktop-amd64.iso"
  20. loopback loop (hd1,gpt2)/${isofile}
  21. "/etc/grub.d/40_custom" [readonly] 30 lines, 1154 characters
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement