Advertisement
Guest User

Untitled

a guest
Dec 14th, 2014
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1. # Config for GNU GRand Unified Bootloader (GRUB)
  2. # /boot/grub/grub.cfg
  3.  
  4. # Timeout for menu
  5. set timeout=30
  6.  
  7. # Default boot entry
  8. set default=0
  9.  
  10. # Menu Colours
  11. set menu_color_normal=white/black
  12. set menu_color_highlight=white/green
  13.  
  14. # Boot ISOs
  15. menuentry "TAILS - The Amnesic Incognito Live System" {
  16. set iso="/iso/tails-i386.iso"
  17. loopback loop $iso
  18. linux (loop)/live/vmlinuz boot=live config live-media=removable nopersistent noprompt quiet timezone=America/Toronto block.events_dfl_poll_msecs=1000 splash nox11autologin module=Tails findiso=$iso quiet_
  19. initrd (loop)/live/initrd.img
  20. }
  21.  
  22. menuentry "GParted Live - Partition Editor" {
  23. set iso="/iso/gparted-live.iso"
  24. loopback loop $iso
  25. linux (loop)/live/vmlinuz boot=live config union=aufs noswap noprompt ip=frommedia toram=filesystem.squashfs findiso=$iso
  26. initrd (loop)/live/initrd.img
  27. }
  28.  
  29. menuentry "Ubuntu 13.10 Saucy Salamander - 64bit Mini-Installer" {
  30. set iso="/iso/ubuntu-13.10-64bit-mini.iso"
  31. loopback loop $iso
  32. linux (loop)/linux boot=casper iso-scan/filename=$iso noprompt noeject
  33. initrd (loop)/initrd.gz
  34. }
  35.  
  36. menuentry "Ubuntu 12.04 LTS Precise Pangolin - 32bit Mini-Installer" {
  37. set iso="/iso/ubuntu-12.04-32bit-mini.iso"
  38. loopback loop $iso
  39. linux (loop)/linux boot=casper iso-scan/filename=$iso noprompt noeject
  40. initrd (loop)/initrd.gz
  41. }
  42.  
  43. menuentry "Debian 7.0 Wheezy - 64bit Mini-Installer" {
  44. set iso="/iso/debian-wheezy-amd64-mini.iso"
  45. loopback loop $iso
  46. linux (loop)/linux
  47. initrd (loop)/initrd.gz
  48. }
  49.  
  50. menuentry "Debian 7.0 Wheezy - 32bit Mini-Installer" {
  51. set iso="/iso/debian-wheezy-i386-mini.iso"
  52. loopback loop $iso
  53. linux (loop)/linux
  54. initrd (loop)/initrd.gz
  55. }
  56.  
  57. menuentry "Memtest86+ - RAM Tester" {
  58. linux16 /boot/memtest86+.bin
  59. }
  60.  
  61. menuentry "Darik's Boot and Nuke - Hard Disk Wipe" {
  62. set iso="/iso/dban-i586.iso"
  63. loopback loop $iso
  64. linux (loop)/DBAN.BZI nuke="dwipe"
  65. }
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79. menuentry 'ISO Precise ' {
  80.  
  81. set isofile="/iso/ubuntu-12.04-desktop-amd64.iso"
  82.  
  83. loopback loop (hd0,5)$isofile
  84.  
  85. linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile noprompt noeject
  86.  
  87. initrd (loop)/casper/initrd.lz
  88.  
  89. }
  90.  
  91.  
  92. menuentry 'ISO Precise ' {
  93.  
  94. set isofile="/iso/ubuntu-12.04-desktop-amd64.iso"
  95.  
  96. loopback loop (hd0,5)$isofile
  97.  
  98. linux (loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=$isofile noprompt noeject
  99.  
  100. initrd (loop)/casper/initrd.lz
  101.  
  102. }
  103.  
  104. menuentry "Knoppix 7.0.4 DVD ISO" {
  105.  
  106. set iso_path="/iso/KNOPPIX_V7.0.4DVD-2012-08-20-EN.iso"
  107.  
  108. loopback loop (hd0,msdos1)$iso_path
  109.  
  110. echo "Loading linux"
  111.  
  112. linux (loop)/boot/isolinux/linux bootfrom=/dev/sda1$iso_path acpi=off keyboard=us language-us
  113.  
  114. echo "Loading minirt"
  115.  
  116. initrd (loop)/boot/isolinux/minirt.gz
  117.  
  118. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement