Greetings !!
I try to fix a problem with friends that moved from Windows to OpenSuSE recently.
The problem is: they have two accounts mouman and pitou.
The old files are located on another partition mounted as “Windows/C” in fstab.
My idea, to avoid cut them from Windows too brutally, was create a symbolic link to the location of their personnal files “My Documents” folder on both accounts.
It worked, dolphin saw the symbolic link that could be opened and browsed without any problem.
BUT when my friend tried to modify a document from this partition she only had the read permissions (read only). She was bothered to make a copy using spreadsheet.
The fstab entry shows
users,gid=users,fmask=133,dmask=022,locale=fr_FR.UTF-8 0 0
The *mask means 0777 minus 0xxx → 133 means 0644 and 022 means 0755
My first idea was changing the fmask to 022 but it doesn’t seems to work.
I tried to chown the “My Documents” folder for both accounts in the windows partitions but it seems that chown doesn’t work (ls -hal displays root:users for each entry they must be mouman:users or pitou:users instead and the permissions were drwxr-xr-x).
I read that ntfs-3g features the “permissions” option to let linux permissions (chown, chmod, …) operate on the ntfs partitions: it doesn’t seems to work.
Each time I did fstab changes I used mount -a command.
It only works with the root account. In fact it always worked with the root account with or without the different changes done in fstab.
How do you think I could fix this problem ?
I want each user to have read/write access to a folder on a NTFS partition pointed by a symbolic link replacing their respective Documents folder.
The symbolic link was created with each user account I wasn’t root when I created the symbolic link.
The actual fstab entry shows
users,gid=users,fmask=022,dmask=022,locale=fr_FR.UTF-8 0 0
thanx in advance…