Recently installed Mint 17 on an HP 2000 laptop with a 300+ GB HDD as dual boot with Windows 8. Besides the Win and Mint partitions I had a 150 GB partition formatted as NTFS I mount as "Data" at start up.
Code:
/etc/fstab entry:
/dev/disk/by-uuid/3BC5713C5EA51826 /media/mark/Data auto nosuid,nodev,nofail 0 0
All files perms at Data are shown as
Code:
-rwxrwxrwx 1 root root
. I do have access to the root files as user mark. I can remove and modify them, so it seems to work. When I exec
Code:
sudo chown -R mark: /media/mark/Data
it takes a while but files perms have not changed. I have read something about NTFS not supporting file perms.
I have a external USB drive as well. It is magically mounted when connected. No entry in /etc/fstab and I do not know where the mount info is. All files on this drive are
Code:
-rw------- 2 mark mark
. I cannot chown or chmod these files either.
So I guess my question are:
Should I format my drive differently?
If not, what do I need to use in /etc/fstab to mount the Data partition to result in file perms
Code:
-rw------- 2 mark mark
?
Side note: spent a couple days trying to get this to work. There is no lack of info out there, probably too much info for me to sort it all out. Lots of suggestion like ntfs-3g formatting that is not even listed in the man page for fstab. So I think I just need a little direct help on this one.