FreeNAS user Permissions

atriant62

Cadet
Joined
Nov 22, 2020
Messages
1
Please some information.
I created 2 users user1, user2.
Also a shared folder named classfolder.
I would like user1 to have full privileges in the classfolder folder and user2 to read only.
Operating Windows - FreeNAS 11.3
Thanks
 
Joined
Jan 7, 2015
Messages
1,150
Make sure they are both members of the same group and use that group as the owner.

Then do this on classfolder:

chown -R user1:samegroup /path/to/classfolder
chmod -R 750 /path/to/classfolder
 
Top