Hi Naveen, For this you need to add an entry in the fstab file that is located in /etc.
vi /etc/fstab and add a new line to it. check the partition name using fdisk -l /dev/hda.This will show you the partition which you want to mount. Considering your windows partition is /dev/hda5, add an entry like this. /dev/hda5 /mnt/windows vfat defaults 0 0 This is for fat16/32 partition. Give mount -a command after adding the entry in fstab file.This will mount all the partitions that are listed in the fstab file. If you want to add ntfs partition,first you need the driver which can be downloaded from http://www.linux-ntfs.org After installing the driver,you can access the NTFS partitions in the same way you access your FAT partitions Thanks, Narender Rao

