Re: newbie grub to root pratition
Qqmike, as always, is correct in the observation of (hd0) being Grub notation for the MBR of the first bootable device. Grub's code (menu.lst, Stage 1, Stage1.5, etc.) is always loaded to whatever partition has been designated for /boot (quite often included under the / partition, but not always of course). The bootloader code is different and refers to the 512 bytes written (usually) to the MBR of the first bootable device, which must point to where Grub's code is stored so that the BIOS can find it, read it, store it to memory, and execute it. The same applies to Windows' bootloader code, or any other OS bootloader code, and is different from the data stored in a partition's first sector.
Qqmike, as always, is correct in the observation of (hd0) being Grub notation for the MBR of the first bootable device. Grub's code (menu.lst, Stage 1, Stage1.5, etc.) is always loaded to whatever partition has been designated for /boot (quite often included under the / partition, but not always of course). The bootloader code is different and refers to the 512 bytes written (usually) to the MBR of the first bootable device, which must point to where Grub's code is stored so that the BIOS can find it, read it, store it to memory, and execute it. The same applies to Windows' bootloader code, or any other OS bootloader code, and is different from the data stored in a partition's first sector.
Comment