How to mount new partitions in linux?
Make a directory for mount point for example windows in /mnt: mkdir /mnt/windows now want to mount the D drive with fat32 file system in /mnt/windows: mount -t vfat /dev/hda5 /mnt/windows For automount, add the partition to the /etc/fstab, open the /etc/fstab in an editor for example in gedit with gedit /etc/fstab, and add this line: /dev/hda5 /mnt/windows vfat defaults 1 2 Top