Click to See Complete Forum and Search --> : Manual Grub add


MMX
09-12-2002, 05:50 PM
I need help to add my Win98 (FAT32) partition in Grub boot list. The partition of Win98 is hda4 and is a primary partition. Can somebody help me?

Bokkenka
09-12-2002, 10:26 PM
In /boot/grub/grub.conf, add the listing...
----------

title Windows 98
root (hd0,3)
chainloader +1

----------

hd0 = hda
,3 = fourth partition ( 0, 1, 2, 3, ...)

When you reboot, it will offer the new Win 98 listing.

Timothy L. Miller
09-13-2002, 02:26 AM
Originally posted by Bokkenka
In /boot/grub/grub.conf, add the listing...
----------

title Windows 98
root (hd0,3)
chainloader +1

----------

hd0 = hda
,3 = fourth partition ( 0, 1, 2, 3, ...)

When you reboot, it will offer the new Win 98 listing.

That would be grub.lst, not grub.conf lilo uses a .conf file.

mdwatts
09-13-2002, 03:49 PM
Or with my distro, that would be /boot/grub/menu.lst as grub.conf is in /etc and is an entirely different file than menu.lst.

MMX
09-15-2002, 06:35 PM
Thanks by the posts. It has been helped me very much!