Well, there
is a boot manager after you install Fedora. It's called the GRUB boot loader. The problem is, by default the grub boot menu is made hidden (not displayed), and worse, it has a default of zero (0) seconds timeout. How brilliant is that?
To make the Grub boot menu display without having to hit any key at just the right instant early in the boot process, you can edit the file /boot/grub/grub.conf. You will need to be root to do that If you are using Gnome, and thus have the gedit text editor, you could:
Code:
su -
enter roots password when prompted
gedit /boot/grub/grub.conf
Comment out the line that says
hiddenmenu by putting a hash in front of it so it reads
#hiddenmenu
Edit the line that says
timeout=0 to
timeout=5 (that's in seconds, adjust to your liking)
You could also change the title of the Windows entry, which by default it labed as "Other", to more accurately describe your Windows OS.
If you prefer to have Windows be the default boot option instead of Fedora, then edit the line
default=0 to whichever position the Windows entry is. Each choice begins with the name "title". Grub counts from zero (0), so if you still only have one Fedora kernel, the Windows entry would be the second choice, or
default=1 to make Windows the default OS to boot into. You, of course, can use the up/down arrow keys at the grub boot menu to select which OS or specific Fedora kernel to boot.