Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想与所有人共享一个文件,但 3 个特定用户除外。
我可以使用 linux 扩展属性创建 ACL 并授予特定用户访问权限,但问题是我不知道所有用户,我只知道列入黑名单的用户。
setfacl -m u:user1:r test1
有没有办法通过为列入黑名单的用户帐户创建 ACL 来做到这一点?
期间我发现了......
# setfacl -m u:mat:0 mymat # setfacl -m u:user1:0 test1 # getfacl test1 # file: test1 # owner: root # group: root user::rw- user:user1:--- group::r-- mask::r-- other::r--