<html><body><div style="font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000"><div>I'm trying to do something that I'm not sure is possible.</div><div><br data-mce-bogus="1"></div><div>I'm using a bootable USB with Grub2 to boot up a Linux system on a device that has something installed on its internal drive.</div><div>Sometimes I need to boot of the internal drive to fix something on the USB stick. This requires walking to the cart the equipment is on, pulling the USB, booting, and plugging the USB back in. I'm running Grub2 with serial so I could do all this from my office.</div><div><br data-mce-bogus="1"></div><div>I want to add an entry to grub.cfg on the USB that will jump to the MBR on the internal drive from the USB. Can I even do this? I'd like to select "Internal Drive" on the grub2 screen and then see the grub1 menu as if I booted without the USB. </div><div><br data-mce-bogus="1"></div><div>I've tried this entry:</div><div><br data-mce-bogus="1"></div><div><span style="font-family: "courier new", courier, monaco, monospace, sans-serif;" data-mce-style="font-family: 'courier new', courier, monaco, monospace, sans-serif;">set timeout=10</span><br><span style="font-family: "courier new", courier, monaco, monospace, sans-serif;" data-mce-style="font-family: 'courier new', courier, monaco, monospace, sans-serif;">insmod usb</span><br><span style="font-family: "courier new", courier, monaco, monospace, sans-serif;" data-mce-style="font-family: 'courier new', courier, monaco, monospace, sans-serif;">insmod ext2</span><br><span style="font-family: "courier new", courier, monaco, monospace, sans-serif;" data-mce-style="font-family: 'courier new', courier, monaco, monospace, sans-serif;">insmod serial</span><br><span style="font-family: "courier new", courier, monaco, monospace, sans-serif;" data-mce-style="font-family: 'courier new', courier, monaco, monospace, sans-serif;">serial --speed=9600 --unit=0 --word=8 --parity=no --stop=1</span><br><span style="font-family: "courier new", courier, monaco, monospace, sans-serif;" data-mce-style="font-family: 'courier new', courier, monaco, monospace, sans-serif;">terminal_input --append serial</span><br><span style="font-family: "courier new", courier, monaco, monospace, sans-serif;" data-mce-style="font-family: 'courier new', courier, monaco, monospace, sans-serif;">terminal_output --append serial</span><br><span style="font-family: "courier new", courier, monaco, monospace, sans-serif;" data-mce-style="font-family: 'courier new', courier, monaco, monospace, sans-serif;">set root=(hd0,1)</span><br></div><div><br></div><div><span style="font-family: "courier new", courier, monaco, monospace, sans-serif;" data-mce-style="font-family: 'courier new', courier, monaco, monospace, sans-serif;">.....</span></div><div><br data-mce-bogus="1"></div><div><span style="font-family: "courier new", courier, monaco, monospace, sans-serif;" data-mce-style="font-family: 'courier new', courier, monaco, monospace, sans-serif;">menuentry "Internal Drive" {</span><br><span style="font-family: "courier new", courier, monaco, monospace, sans-serif;" data-mce-style="font-family: 'courier new', courier, monaco, monospace, sans-serif;"> insmod chain</span><br><span style="font-family: "courier new", courier, monaco, monospace, sans-serif;" data-mce-style="font-family: 'courier new', courier, monaco, monospace, sans-serif;"> chainloader (hd1,0)+1</span><br> <br><span style="font-family: "courier new", courier, monaco, monospace, sans-serif;" data-mce-style="font-family: 'courier new', courier, monaco, monospace, sans-serif;">}</span><br></div><div><br data-mce-bogus="1"></div><div>Chris</div></div></body></html>