Yes, my boot device order is USB, CD and then HDD.
So obviously when the USB HDD isn't connected it will ignore USB, then CD if there is one in there, then goes to Windows HDD.
And the boot options I edit was at the Grub Menu where I change Linux Mint, kernel 2.6.24-16-generic options "root=/dev/sda1 ro quiet splash" to "root=/dev/sdb1 ro quiet splash"
I followed your instructions:
- Code: Select all
title Linux Mint, kernel 2.6.24-16-generic
root (hd1,0)
kernel /boot/vmlinuz-2.6.24-16-generic root=/dev/sdb1 ro quiet splash
initrd /boot/initrd.img-2.6.24-16-generic
That lead to the disk being unmountable, and I followed the Recovery option, but changed the disk to sdb1 instead of the default sda1.
The disk was unmountable due to the option "root (hd1,0)" being changed from the "root(hd0,0)"
I therefore used this configuration:
- Code: Select all
title Linux Mint, kernel 2.6.24-16-generic
root (hd0,0)
kernel /boot/vmlinuz-2.6.24-16-generic root=/dev/sdb1 ro quiet splash
initrd /boot/initrd.img-2.6.24-16-generic
Thanks for the help Husse,
