Mount NTFS on Ubuntu/Linux Operating System.
Disclaimer: Accessing the information on this page means you agree to the Sites Privacy Policy & Terms of Use Agreement
If you have a
First you will need to install ntfs-3g on your Ubuntu operating system with below command :
$ sudo apt-get install ntfs-3g
now create one folder under /mnt path :
mkdir -p /mnt/usb
now identify your disk drive which you have attached in system with below command :
$ fdisk -l
This command will help you to identify the disk drive which is with NTFS partition system. Just note down it.
Let’s guess you have found /dev/sdf2 is your disk drive which you want to mount …
Then after mount your NTFS Drive partition with below command :
$ sudo mount -t ntfs-3g /dev/sdf2 /mnt/usb/
That’s it, you have mount your NTFS on /mnt/usb now you can read data under the path /mnt/usb.
This article is contributed by RootLinuxBlog. If you like RootLinuxBlog and would like to contribute, you can submit an article using contact us from. See your article appearing on the RootLinuxBlog main page and help other Techies.
Please write comments if you found any error with the above article would really help us to serve you a better way. Thank you…