To have full read/write access in both directions do the following:
- Install XP in a fat32 partition (if you install it in a NTFS it will be read only)
- Install linux in another fat32 partition
XP will automatically recognize the linux partition as drive D:
For linux to mount the XP partition at boot time do the following
Create a mount point folder
Code:
mkdir /media/windows
or
mkdir /mnt/windows
Then try with the following command:
Code:
mount /dev/hda1 /media/windows/
If you can access your partition the next step will mount it whenever you boot your computer
Open '/etc/fstab' in an editor and add these lines to the END of the file:
/dev/hda1 /media/windows auto defaults,users 0 0
If you decide to install windows in a NTFS partition, you can follow the instructions
here