I will help you with an example. Usually Windows C: Partition is the 1st partition of the HDD, so in Linux it will be recognised as /dev/sda1 and if you have another primary partition, it would be recognised as /dev/sda2, logical drives are recognised from /dev/sda5 onwards since we cant have more than 4 Primary Partitions.
Suppose you have 4 paritions:
C: Windows
D: Movies
E: Linux root "/" partition
F: Swap
Open a Terminal and follow the steps below:
1: Create a mount point in /media directory
Code:
sudo mkdir /media/[B]windows[/B]
You can name this folder anyway you want.
sudo command will always ask for your password.
2: sudo fdisk -l to get the partition names (most probably /dev/sda1 or /dev/sda2
3: Open /etc/fstab file as it handles the permanent mounting of partitions.
sudo gedit /etc/fstab and enter the following line in it
/dev/sda1 /media/windows ntfs-3g defaults 0 0
Don;t forget to add spaces.
4: Save the file and enter
mount -a in the Terminal.
Now you can access your windows partition in /media/windows directory.
When you reboot(not required) all your partition entries in /etc/fstab will be mounted automatically.
Don't get bored reading my post, i prefer clarity than chaos.
Are you familiar with Linux or is it just your 1st time?