How to Mount
In Ubuntu, when we connect external hard Disk, it is not automatically mounted just like Windows/MacOS, so here are the approach
First check external hard disk path and type
[!NOTE] lists information about all available or the specified block devices.
This command will show list of all partition; i
sample output
Note: output might list a all partition ( in case you have windows alongside ) so you have to found which is against /dev/...
or use -f
in place of -l
here we see that name show under /sda/sda1 ; but we will use /dev/sda1
later
another command
output will contains your hard disk details
so your hard dik type is ntfs
Create a directory in your file system
to mount the drive we need a space; so create directory on any place; which we will use it in next command
Mount device on the system directory
use below method
That’s all.