how to mount windows drive in ubuntu code example
Example 1: how to mount a hard drive in ubuntu
mount | grep sdb
Example 2: where to mount drive in ubutnu
$ sudo mkdir /media/newhd
#To mount the drive, enter:
$ sudo mount /dev/sdb1 /media/newhd
$ df -H
#To view files cd to /media/newhd, enter:
$ cd /media/newhd
$ ls -l