File permissions won't change

Solution 1:

Solved!

The answer was found here.

gksu gedit /etc/fstab

Add the next line as (if you don't know your UUID do a sudo blkid)

UUID=12102C02102CEB83 /media/Store ntfs-3g auto,users,permissions 0 0

Save it and close the file.

If you need to make the directory, which I did

sudo mkdir /media/Store

Then

sudo mount /media/Store

Finally (whatever permissions you want to set)

chmod 755 -R /media/Store

And then make it your own

chown <username> -R /media/Store

Yeah, that took me like 8-10 hours over 2 days to get. And "Store" is for "Storage" :-P