I have lost "Write" permission for myself, and all other permissions for 'Others' and 'Group' on my important NTFS Partition(Contains all my Data). Any amount of Chmod(ing) or using the GUI to set it right isn't working.
I get this error when doing it the GUI way.(No other details of why it couldn't set permissions is mentioned).
And this happens when doing it in CLI. This is quite an issue need help fast.
Output of cat /etc/fstab
Output of dmesg | tail
I got my answer on ubuntuforums.org
I was using the ntfs driver and not the ntfs-3g driver. I just needed to install the
ntfs-3g
driver and everything worked properly.I believe your NTFS partition is mounted as read-only. This is the default behaviour when your NTFS partition is auto-mounted.
To solve this issue first identify the device file for your NTFS partition. It will be in /dev directory so the complete file name would be something like /dev/sdaX. You can find this using Disk Utility. After this create a directory in your home directory and unmount your NTFS partition using the following command:
now remount it using the following command to have write access to it:
I usually mount my ntfs partitions with the options:
defaults,rw,user,uid=myusername,gid=mygroupname
Of course this is assuming a single-user system. ^^
Following the basic advice above I created
so I can mount as wanted. I like it this way because many of the files there are very important to me, so not having automatic access is just another layer of protection.