On Mon, May 14, 2001 at 10:53:56PM +0200, spider wrote: | my grub does not see the vmlinuz file... | | entries looks like this: | | #Entry 0: | title Debian | root (hd0,0) | kernel /boot/vmlinuz root/dev/hda3
Where is /boot ? If it is a separate partition (ie /boot is /dev/hdc1 and / is /dev/hdc2) then change the last line to kernel /vmlinuz root=/dev/hda3 (Also note that there is supposed to be an '=' sign after "root".) The reason for this is grub doesn't look for /etc/fstab to figure out what you named your partitions. It treats all partitions as '/'. HTH, -D