Linux can read MicrosoftWindows Partitions just fine, you just need to Mount them onto the FileSystem.
Most likely, your Windows partiton was probably configured for access when you installed Linux – try looking in the /mnt/ directory using your FileManager and see if there is a directory called windows or similar. If so, then simply clicking on it should show the contents of your C drive. If it looks empty, try issuing mount /mnt/windows on a root Shell.
If that doesn't help either, you need to configure a few things.
First, you will have to make a "mount point", that is, a directory which the Partition will be mounted onto. Do this as root: mkdir /mnt/windows
Next, you need two pieces of information:
To mount an NTFS partition, you use mount -t ntfs /dev/hda1 /mnt/windows; to mount a FAT partition, you use mount -t vfat /dev/hda1 /mnt/windows.
You successfully mounted your Windows partition? Great. But you'll have to issue the mount(8) command again the next time you boot the machine. If you want it mounted automatically, you can translate the command to a line in your /etc/fstab configuration like this:
/dev/hda1 /mnt/windows vfat auto
You may be required to specify the user ID (UID) in /etc/fstab to get it to work with a non-root user:
/dev/hda1 /mnt/windows vfat auto,uid=502
The "user" option allows the user to Mount and unmount, the "uid" option says which user can access files on that FileSystem. To get the UID for user joebob, issue id -u joebob.
FedoraCore doesn't have NTFS drivers built into the kernel, so you can't read Windows 2000/XP drives with it. You can however install pre-compiled NTFS kernel RPMS for Fedora to make it work.
No page links to AccessingWindowsPartitions.