I'm new to Ubuntu. Installed ubuntu by formatting my existing C Drive in Windows 10 OS. So I have only Ubuntu in my laptop. My D drive is left untouched which is a NTFS file system. Please guide me how to mount this so that I can work with my files.
-
1Open `Files` (nautilus) and on the left side below *network* you can see all the partitions. Click on them to mount them. – Manish Kumar Bisht Nov 21 '17 at 11:48
-
@jdwolf please only comment if you want to ask for clarification from the author or suggest how they can improve their question etc. Comments to express your opinion on a post are not useful. See "When should I comment" in the relevant [help center page](https://askubuntu.com/help/privileges/comment). – terdon Nov 21 '17 at 11:51
-
1The following link may help you, https://askubuntu.com/questions/956002/how-to-change-default-permissions-on-automounted-usb-flash-formatted-in-ntfs/956024#956024 – sudodus Nov 21 '17 at 11:57
-
Thanks a lot.. I apologize, I should have tried something before posting a question here. I read through some articles on this and I wasn't sure to try one, because I don't want to lose my files since I do not have a back up. Now with your instructions I'm able to successfully map it. Once again, thank you very much. :) – Murali Sundaram Nov 21 '17 at 12:09
-
you should search and try before posting "how to"... next time – guyd Nov 21 '17 at 12:18
-
Sure, will do.. – Murali Sundaram Nov 21 '17 at 12:24
-
You are welcome. I'm glad it works for you and thanks for letting us know :-) – sudodus Nov 21 '17 at 19:23
-
2Possible duplicate of [How to automount NTFS partitions?](https://askubuntu.com/questions/46588/how-to-automount-ntfs-partitions) – karel Feb 01 '19 at 11:40
3 Answers
Do you want to mount it once or auto mount it? For mounting it once:
1.First create a directory where u want to mount it.
sudo mkdir /media/windows
Now you have to find which partition is the NTFS one by using:
sudo fdisk -lIf your NTFS partition is for example
/dev/sdb1to mount it use:sudo mount -t ntfs -o nls=utf8,umask=0222 /dev/sdb1 /media/windowsTo unmount simply do:
sudo umount /media/windows
If you want to auto mount it check this link.
-
7maybe as an alternative, I used `apt install ntfs-3g` and `sudo mount -t auto /dev/sdb1 /media/your_favorite_path/` – user2305193 Jan 16 '21 at 12:43
-
1Worth clarifying that the answer will mount as read-only while the comment above will mount as read+write – Nick Apr 17 '21 at 18:10
Check what you have in your /dev/ directory by typing in terminal:
ls /dev/sd*
If you have only one hard drive, you could see there devices like sda2, sda5. You could create directory as AsenM suggested and mount by hand every time you need it. To avoid manual mounting you could add similar to the next string in your /etc/fstab file:
/dev/sda5 /mnt/super ntfs-3g permissions,users,auto,locale=en_US.utf8 0 2
And also, in some cases you could encounter problems with read/write mounting if you did not have Full access for Everyone from Windows. In this case you could make bootable flash drive with windows, boot it and grant all permissions for user Everyone for the whole drive. I've encountered this problem recently. What is strange, the error message was saying that my disk is in hibernation state. So it could be mounted only with read only access.
- 7,279
- 9
- 31
- 52
I found another alternative easy solution for NTFS formatted usb keys in ubuntu/linux.
- Plug in the usb
- Open "Disks" application on Ubuntu.
- Click the icon representing the USB.
- Click the Icon of mounting (like a play Icon)
Done. Now check on File explorer, you will see also listed on the left the new mounted usb-key's location
- 101
- 2