4
I'm having an issue with my computer; I recently installed Deepin Linux, based on Debian, and I'd like to use my internal ntfs formatted HDD on it.
I made an fstab
entry to auto-mount it at startup, here is the line:
UUID=BE9823F89823AE39 /media/Data ntfs defaults,gid=1000,uid=1000 0 0
The problem is that in the defaults options, the disk is supposed to be mounted as rw
, but it's still in read only mode.
Does anyone has an idea to help me?
EDIT:
I did what jpgaugh said, but it still doesn't work; here is my new fstab
line:
UUID=BE9823F89823AE39 /media/Data ntfs-3g defaults,gid=1000,uid=1000,dmask=022,fmask=133 0 0
1
Use ntfs-3g. Write support to NTFS is considered unsafe by the kernel team, and thus is not included by default. You should back-up your NTFS partition before attempting to write to it. However, I've never had any issues in practice; but since NTFTS is closed-source, there's no guarantee that their won't be issues, either.
– jpaugh – 2017-10-09T21:00:05.277Welcome to [su]! I can't remember the specifics, but if the link I mentioned above helps, go ahead and provide your solution as an answer here. That will allow you to find it a year from now when you forget, and possibly help others as well. – jpaugh – 2017-10-09T21:23:01.123
I dit what jpgaugh said, but it still doesn't works; here is my fstab line :
UUID=BE9823F89823AE39 /media/Data ntfs-3g defaults,gid=1000,uid=1000,dmask=022,fmask=133 0 0
– BDeliers – 2017-10-10T05:59:16.363