quote:
Originally posted by CatKnight:
well what i did now was to write the linux boot mbr to a floppy and copy it to the 2000 hard drive, then add an entry to boot.ini. the boot menu works, and shows both OS's, but when i select linux it just freezes up with a blinking cursor in the corner.
This won't work. You have to have lilo install its boot sector into your root partition, then do:
code:
dd if=/dev/{root device}of=bootsect.lnx count=1 bs=512
and then copy the bootsect.lnx file to your NT partition (either by copying it directly, or copying it to a FAT partition or floppy), and use that as the boot sector file in boot.ini. However, you will have to regenerate this if you update your kernel.
The process is fully covered in a Mini-HOWTO. You can see it at http://www.linuxdoc.org/HOWTO/mini/Linux+NT-Loader.html. If you eventually start using Grub instead, you can do something similar, and that will let you avoid the difficulty of regenerating the boot sector whenever you update the kernel.
This message has been edited by kai on June 27, 2001 at 06:11 PM