I currently boot from a kubuntu system on /dev/sda1 (hd0,1). I have a version of the system I am testing on (hd0,2). What I want to do is test the boot system without having to install it to the MBR. As far as I can tell, the following should work if entered into the grub menu editor when booting (hd0,1):
insmod chain
insmod ext2
set root='(hd0,2)'
chainloader +1
but it doesn't work. I get a message about "invalid signature". So I tried the --force option with the chainloader command, and it just freezes.
(hd0,1) is precise
(hd0,2) is quantal
both are ext4 formatted. I can of course boot quantal from precise's boot menu, but that is not the object here -- I want to test quantal's boot menu without changing the MBR in case it doesn't work.
insmod chain
insmod ext2
set root='(hd0,2)'
chainloader +1
but it doesn't work. I get a message about "invalid signature". So I tried the --force option with the chainloader command, and it just freezes.
(hd0,1) is precise
(hd0,2) is quantal
both are ext4 formatted. I can of course boot quantal from precise's boot menu, but that is not the object here -- I want to test quantal's boot menu without changing the MBR in case it doesn't work.
Comment