Hi, Once after creating the partition tables and formatting with the required partitions like ext4 and swap. We have to map the disks to the desired mount point.
So, in the installation process shown, the below are the following commands. $ mount /dev/sda1 /mnt My question is, /mnt is created by default? It is just a empty folder right ? $ mkdir /mnt/home //making a directory home $ mount /dev/sda3 /mnt/home //making it as a mount point So, the same way the /mnt also worked like, $ mkdir mnt $ mount /dev/sda1 /mnt Thank you. Susarla Nikhilesh.

