You are not logged in.
Pages: 1
The following are the relevant sections of my /boot/grub/menu.lst file
Win98 partition; /dev/hda4
Able to mount as vfat partition in /etc/fstab
title Windows 98
rootnoverify (hd0,3)
makeactive
chainloader +1
boot
After selecting the option on boot, the screen displays part of the code above and simply hangs there.
Any ideas?
Thanks in advance!
Thanks in advance!
Offline
I very much doubt the 'boot' line is necessary.
Try removing it.
Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.
clean chroot building not flexible enough ?
Try clean chroot manager by graysky
Offline
oh, that was how it was initially, and it didn't work.
i read about the map function somewhere.. is it necessary in this case?
Thanks in advance!
Offline
I don't know if this is necessary, but is the bootable flag of the partition set?
Haven't been here in a while. Still rocking Arch.
Offline
The bootable flag is a windows thing. When you install windows, it installs its code to the mbr which is to look at the partition table (part of the mbr) for the bootable flag and boot that partition. Thats why if you dual boot into windows without it set as the bootable partition it will reinstall its bootloader into the mbr and set it as the bootable partion. Grub doesn't work like that. Instead you choose which paritition to boot from according to your menu.lst.
I believe in the case of Windows 98 for some asshole reason it must be the first partition on the hardrive. You can trick it into thinking it is by using map in your grub.conf:
map (hd0,0) (hd0,3)
map (hd0,3) hd0,0)
and keep the rest the same.
Offline
Alas, it didn't work..
just hung after displaying the command list.
Will fdisk /mbr fix this?
My /etc/fstab
/dev/hda4 /mnt/hda4 vfat noauto,owner,users 0 2
allows me to mount the win partition in windows perfectly so I know it's not thrashed or anything.
Thanks in advance!
Offline
I have this in my menu.lst:
title Windows XP
root (hd0,2)
rootnoverify
chainloader +1
makeactive and boot options are not needed when you have active and boot attributes set for your Windows partition.
to live is to die
Offline
Pages: 1