i've never used fc before but this should be pretty standard:
Code:
echo "/dev/hda1 /mnt/win ntfs users,auto,uid=bob,gid=users 0 0" >> /etc/fstab
where hda1 is your nfts partition and you want to mount it as /mnt/win. bob is your userid so change that.
This should automount your partition when you boot up, but otherwise you can use
mount | umount /mnt/win to mount or unmount it.