I'm not sure what has happened, but I've all of a sudden lost write access to any of my NTFS external drives.
I installed a few games and apps from the software center, and now I can't make new folders or copy and paste files to anything that is NTFS. Everything is now read only, and I've tried so many things to fix it, but it seems hopeless.
Just to check if it wasn't the drives themselves, I made a little ntfs formatted truecrypt volume, and a fat formatted volume. And yes, it seems that Ubuntu is blocking me from writing anything to NTFS.
What happened here?
Whats a way I can simply get write access to my NTFS drives, so I can just backup all my stuff.
I'll probably reinstall Ubuntu. Please help.
UPDATE (and thanks everyone for their quick replies)
The problem has been solved.
Prior to noticing that I had lost NTFS write permission, I had installed GParted from the software center, and there was an extension called ntfsprogs that came with it.
During my search for a solution to the problem, I uninstalled GParted (as that was one of the apps I installed just before the problem). But that did not solve the problem.
I came across an app called 'NTFS Configuration Tool'. When I installed this, it said that the ntfsprogs extension needed to be removed (so I guess uninstalling GPARTED, didn't remove the ntfsprog extension).
I launched the NTFS Configuration Tool and now I have write access to NTFS drives. Unfortunately, I didn't check if I had write permission prior to launching the NTFS Configuration Tool, so I'm not sure whether the NTFS Configuration Tool, or the un-installation of ntfsprog gave me back NTFS write permission.
Hopefully if another newbee encounters this problem, they'll come across this page and know what to do.
If you're dual-booting, try
and replace
/dev/sda1
with the partition name (e.g./dev/sda4
[for the fourth partition on the primary hard drive] or/dev/sdb
[for a single partitioned secondary drive]).You need to mount the NTFS drive with the UTF-8 options. If you look up on Google how to mount the ntfs-3g filesystem , you'll see that you need these options:
The symptom that you will get if your missing the UTF-8 option is that you can read to the drive but you cannot write. For, example, you would lose the ability to move a file off of the drive.
Note: a link to more info is here . The UTF-8 option is mentioned here .
For ntfs you should use the
permissions
option.Using /dev/sda1 as an example (you can use UUID in fstab as well), mounted at /media/ntfs (adjust your partition / mountpoint / fstab entry to your needs).
Edit
/etc/fstab
Add/Edit your entry to look similar this line
Make a mount point (if needed)
Unmount and re-mount the ntfs partition
Now you can manage the ownership and permissions with
chown
andchmod
If, after all that, the partition is not working as expected, check it from windows.
Thank goodness I found this post. I was having a similar problem where i could make a folder or file, but I could not change the file or folder except delete it. It gets really annoying when you must do
chmod
on every new file or folder.All I did was:
The purge option is a full uninstall. After that, I just grabbed a fresh install. Simple, and it works.
Running
and then
worked for me.
I guess it's because
initrd.img
was not generated with thentfs-3g
module while kernel update took place. Just a guess because I didn't have ntfsprogs installed. I had only ntfs-3g which didn't work.I installed GParted with ntsfprog as add-on a month back and I lost the write permission (I just find out).
So, I un-installed ntfsprogs only, and then installed ntfs-3g and that solved the problem.
Same thing happened to me after I installed GParted few days ago. So I did some research in the Internet and found that its because an add-on called "ntfsprogs"(older ntfs utility) overwritten the add-on "ntfs-3g"(latest ntfs version).
I can't understand the whole thing, but those two add-ons are in a conflict. So all you need to do is remove "ntfsprogs" by using Software Center.
Type GParted and unmark "Tools for doing neat things in NTFS partitions from linux(ntfsprogs)" or remove GParted completely.
Type "ntfs" in Ubuntu Software center. First option you get is "NTFS Configuration Tools".
Install it and bingo. Now you got your permissions back.
I had this recurring problem for months. I was under the impression that this was specifi to Toshiba drive.
Anyway, this is how I dealt with it successfully:
exit 13
error, since you haventfsfix
now, runntfsfix -b /dev/sdbx
where you replacesdbx
with your hard drive/NTFS drive. You can get your drive name fromsudo fdisk -l
. You'd be able to identiy your drive from there.For instance, for me,
sudo fdisk -l
returns:Here,
/dev/sdb1
is my external hard drive.chown -R username:username /media/path/to/hardrive
to give yourself read+write rights (recursively to all folders and subfolder).I've had to do this twice which probably suggests that my hard drive is dying! Have you backed your data up?