Is it possible to give two users different permissions on the same directory? I want to use it for ftp: userFull gets R+W and userLim gets only Read, depending on who logs on. Im getting stuck on the ownership versus group rights... (I use CentOS+Directadmin and Proftpd)
So the following is what I want if it's possible at all:
/home/myDir - userFull - read & write
/home/myDir - userLim - read only
yum install acl
and used your example. When I do getfacl the permissions are correct, but I still cannot connect with the readonly user (I get a 530 error) – Bokw May 20 '14 at 12:21setfacl -m u:Lim:rx /home/myDir
– TPS May 20 '14 at 12:33Another question/problem now: when I upload files with userFull and I want to view them with userLim, it doesn't allow that, you know why?
– Bokw May 20 '14 at 12:34