I have a server fileserver. Fileserver has an NFS export active that is called share.
I have three users that need ssh/sftp access to share through a remote computer fileaccess: user1,user2, and user3.
How would I set it up such that by logging into fileaccess the following permissions would be active, without modifying the file permissions on fileserver?
user1: read, write, execute
user2: read, (execute?)
user3: read, (execute?)
I would like user2 and user3 to be able to browse the folder but not modify its contents at all, while user1 would be able to do whatever they wanted to it.
I have tried mounting share on fileaccess in /mnt/ and then symlinking to everyone's home directory but I can't seem to give user2 and user3 read-only access without also removing user1's permissions as well.