distros linux desde grub
con estas entradas en 40custom puedes arrancar diversos linux desde grub, sólo añadiendo la ISO en la partición donde está Windows o la iso descomprimida en otros casos #!/bin/sh exec tail -n +3 $0 # This file provides an easy way to add custom menu entries. Simply type the # menu entries you want to add after this comment. Be careful not to change # the 'exec tail' line above. insmod ext2 set root='(hd0,2)' menuentry "Plop Linux" { linux /boot/bzImage root=/dev/sda2 } menuentry "Plop Boot Manager 5" { linux16 /boot/plop/plpbt.bin } menuentry "PlopKexec" { linux /boot/plop/plopkexec } menuentry "Memtest" { linux16 /boot/memtest/memtest } menuentry "Other Linux" { set root='(hd0,2)' # I do not think I should set anything here should I? linux /boot/plop/plopkexec #(add other options here as required...