How to mount NTFS partitions in dual boot

Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
Naiki Muliaina

Re: How to mount NTFS partitions in dual boot

Post by Naiki Muliaina »

Just made a post about monting drives / partitions in my blog :)

Open terminal then list your disks/partitions. Your windows partition/drive will have ntfs next to it. Mines /dev/sda3, so ill use sda3 later on. Yours might be different. Now make a folder to mount the windows partition into. Then use nano to open fstab.

Code: Select all

sudo fdisk -l
sudo mkdir /mnt/windows
sudo nano /etc/fstab
Add a new line to the fstab file and add the following, replacing sda3 with wherever your ntfs drive is located.

Code: Select all

/dev/sda3		/mnt/windows		ntfs	umask=000,defaults	0 0
Save it and close it then go back to terminal and type:

Code: Select all

mount -a
You should now be able to find your whole windows partition in the directory /mnt/windows.
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
User avatar
merlwiz79
Level 8
Level 8
Posts: 2418
Joined: Wed Apr 04, 2007 1:50 pm
Location: Here again :)

Re: How to mount NTFS partitions in dual boot

Post by merlwiz79 »

This would be easier.
Install ntfs-config:

Code: Select all

apt install ntfs-config
Then launch NTFS Configuration Tool found in the menu under Administration.
Now add a mount point by naming it.
Example: /dev/sdb1 could be named sdb1 and then you will see it change to /media/sdb1
Check the add box next to the ones you want to add.
Then Click apply and then OK.

Note: DON'T DO THIS FOR USB HARD DRIVES.
Image
Locked

Return to “Xfce”