first make a directory in your file system
in terminal type: mkdir /mnt/drivename
mount device to your mount point
use mount command as: mount -t vfat /dev/hda1 /mnt/drivename
this command mount drive C: with Fat file system to /mnt/drivename directory
for ntfs use this command: mount -t ntfs /dev/hda1 /mnt/drivename
this command mount drive C: with NTFS file system to /mnt/drivename directory
for other drives such as D: ,E:, ... use /dev/hda2, /dev/hda3
only if your Linux partition is the last partition in your disk
|