the mount command by itself will list the currently mounted filesystems and the mountpoints (directories). To mount a Fat32 partition, you can give the following command:
First create an empty directory which will act as the mount point for your Fat partition:
now give the mount command like so:
Code:
mount -t vfat /dev/hdaX /winc
make sure you replace the X in /dev/hdaX with the partition number of your Fat32 partition. This will mount the fat32 partition on /winc.
To make the partition to mount automatically on each session of Linux, make an entry in the /etc/fstab file.
For e.g for the above partition you can add something like:
Code:
#<device> <mountpoint> <filesystemtype> <options> <dump> <fsckorder>
/dev/hda1 /winc vfat defaults 0 0 0
Hope that helps. for more on fstab do a
info fstab or
man fstab