Peter Humphrey writes: > On Friday 13 April 2012 15:51:07 Dale wrote: > >> Here is grub: >> >> title=Initramfs-new_drive >> root (hd0,0) >> kernel /bzImage-3.3.1-1 root=/dev/sdb2 init=/sbin/init nox >> initrd /initramfs-3.3.1-1-tmp.img > > Your "init=" parameter points to (hd0,0)/sbin/init because of your "root > (hd0,0)" line. I think that's what you need to fix. It should say > "init=(hd1,0)/sbin/init" if I've read this thread aright.
Hmmm, this can't be true. The (hdx,y) notation is a Grub thing, but those kernel parameters go to the kernel who does not understand this notation. That's why there is the root=/dev/sdb2 argument, instead of root=(hd1,1). Once the kernel knows where the root partition is, other file arguments are relative to this. Wonko