Hello All,
PC specs:
P4, 3ghz, 1024 ram, 2 disks.
Disk 1
- C: Windows XP, 25 Gigs, ntfs.
- D: Files, 55 Gigs, ntfs
Disk 2
- X: Fedora Core 5, 20 Gigs
- Y: still empty, maybe soon Debian.
Note: everything works like it should work.
But....
I want to change my grub bootloader a bit...
What happens now is, that PC starts, grub bootloader appears, and says something like:
"Fedora Core 5 will start in X seconds" (which it does) and when i press enter, i have the choice between:
- Fedora Core 5
- Windows XP
What i want now is that Windows becomes the default OS....
And soon, it would be nice to add the 3rd os (maybe debian) to the boot menu to choose from, as option 3.
Here is my current grub.conf:
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE: You do not have a /boot partition. This means that
# all kernel and initrd paths are relative to /, eg.
# root (hd1,0)
# kernel /boot/vmlinuz-version ro root=/dev/hdb1
# initrd /boot/initrd-version.img
#boot=/dev/hda
default=0
timeout=10
splashimage=(hd1,0)/boot/grub/splash.xpm.gz
hiddenmenu
title Fedora Core 5
root (hd1,0)
kernel /boot/vmlinuz-2.6.15-1.2054_FC5smp ro root=LABEL=/ rhgb quiet
initrd /boot/initrd-2.6.15-1.2054_FC5smp.img
title Windows XP
rootnoverify (hd0,0)
chainloader +1
To get Windows Xp as Default, is it just a matter of changing in this file the order, so the last part would look like this ?
hiddenmenu
title Windows XP
rootnoverify (hd0,0)
chainloader +1
title Fedora Core 5
root (hd1,0)
kernel /boot/vmlinuz-2.6.15-1.2054_FC5smp ro root=LABEL=/ rhgb quiet
initrd /boot/initrd-2.6.15-1.2054_FC5smp.img
or is there more too it ? I prefer in this case to double check this, as i have some real important stuff on my windows part, which i really can not affort to loose or whatever.
And once the Y drive is also installed with lets say Debain, it is then possible to do something like this in the last part of the grub installer ?
hiddenmenu
title Windows XP
rootnoverify (hd0,0)
chainloader +1
title Fedora Core 5
root (hd1,0)
kernel /boot/vmlinuz-2.6.15-1.2054_FC5smp ro root=LABEL=/ rhgb quiet
initrd /boot/initrd-2.6.15-1.2054_FC5smp.img
title Debian
root (hd1,1)
kernel *the debain stuff here*
initrd *more debian stuff here*
Cipera