fuzexi,
OK I am taking you by the hand.
When you see the Grub boot screen you press the "esc" key before Linux Mint is booted up. You will see the following message
Quote:
|
You are leaving the graphical boot menu and starting the text mode interface
|
two boxes of "OK" and "cancel" are available for selection. Click "OK" and you will get the same screen but in the text mode.
In text mode if you press the "c" key Grub will remove the boot screen and communicating with you directly. This is a Grub prompt because you will see a line on the screen "Grub>" following by a blinking cursor. Now you are in business because Grub is saluting to you think there is something big for it to do.
You want to tell Grub the root partition you want to boot is the 1st partition of the 1st hard disk because Grub count everything from zero so the instruction is
You now instruct Grub how to boot Xp and that is by command
literally telling Grub that it has no more use to you so it might as well cut its bottom off and paste its upper part to the +1 position of the root partition specified previously.
At this point Grub is still undecided if you really mean what you said. So you have to give Grub the green light to go ahead by typing (and press return afterward)
The result is Grub will load the XP boot loader, pass over the control to Xp and bugger off.
Once you have successfully booted up XP
manually you should go out to buy yourself a drink because you and Grub working together can now boot any installed PC system in the world. You should be able to feel the power of Linux because you now a master with a slave called Grub. If you decide that your fingers can wear out quickly if you have to type the instructions every time to tell Grub then you can put the instructions on a file and ask Grub to read it itself. You do this by editing a file called menu.lst in the subdirectory /boot/grub in Linux Mint.
To Linux Mint you are playing with fire when working on a system file so root privilege is demanded but you can declare yourself as a Superuser. Also Linux Mint may prevent you from using the desktop as a Linux admin is supposed to be skillful with a terminal and able to use an editor. An easy editor that you can use in Mint is
nano. So you can edit the menu.lst with these instructions in a Linux Mint terminal (you need to boot up Linux Mint and select a terminal mode)
Code:
sudo su
nano /boot/grub/menu.lst
Inside the menu.lst you add these lines at the bottom
code]title dude in the Internet says my Xp is in (hd0,0)
root (hd0,0)
chainloader +1
boot[/code]
After saving the file Xp will be bootable as a choice in the Grub screen after a reboot.