Hey there mate, sorry for the slow response, missed this one.
Hopefully you haven't messed up the partition table otherwise this is pretty much useless, but good luck
To mount your drive you must first find the drive label/path. To do so open terminal and type
This should give you an output such as
Code:
Device Boot Start End Blocks Id System
/dev/hda1 * 1 20799 10482381 7 HPFS/NTFS
/dev/hda2 20799 41597 10482412+ 83 Linux
/dev/hda3 41597 43685 1052257+ 82 Linux swap / Solaris
/dev/hda4 43685 116280 36588037+ 7 HPFS/NTFS
Look for the one thats HPFS/NTFS and that will be it (I have two NTFS partitions there but you will more than likely have just one). The first NTFS partition on my drive is my windows partition, take note of yours
Now you must create somewhere to mount it, I use something like /mnt/win to do this use the following command
Now you have a place to mount it we can mount it - yay, to mount it use the following command (Change the /dev/hda1 to your ntfs partition we looked for before)
Code:
sudo mount /dev/hda1 -t ntfs /mnt/win
You can now fire up your file browser to browse through the partition, I'm not sure what window manager you're using but I'm assuming it's gnome since that was default in red hat (if i recall) and it'll more than likely be nautilus file manager
Code:
sudo nautilus /mnt/win
Just as a warning, since RH7 is an old distro presumably running an older kernel, the NTFS code was bad and it tended to mess things up if you try and write to it, treat it as READ ONLY
Hope this helps - Leb