First of all it is important to understand where the bootloader that you want to remove is physically located on the disk. It can either be installed:
- on the first sector of a partition (unlikely for Window$ XP systems);
- on the Master Boot Record, and that is a reserved zone of your hard drive that can either be empty or contain a bootloader; it is most likely that the Window$ bootloader that you want to remove is located here.
Assuming that the Win bootloader is in the MBR then, you just need to erase the MBR in order to remove the bootloader. Then you should take care of flagging the partition containing your GNU/Linux bootloader as bootable.
Since you want to do that "manually", there is actually more than one way to do it. You may start a live MS-DOS environment from a floppy disk and issue
fdisk /mbr
and that is better explained here.
Or you may as well do that from a GNU/Linux system using dd (beware, it is a powerful command!) to erase the first 512 bytes of your primary hard drive -- because that is technically the MBR. More info here.
sudo parted --list
here so we can see your setup. – garethTheRed Jul 11 '14 at 13:31sudo fdisk -l
which is supposedly included in the majority of the distributions. – wizclown Jul 11 '14 at 14:51