문제

When I see the permissions using the getfacl(). The permission information about the users on the files gets listed down.

# file: file.1
# owner: root
# group: root
user::rw-
user:adm:r--
group::r--
mask::r--
other::r--

I could not understand what the "user::rw-" mean .

도움이 되었습니까?

해결책

The lines beginning with user::, group::, and other:: are translations of the traditional Unix permission modes for the file's owner, group, and other, respectively, into ACL syntax. The lines with a user or group name after user: or group: are more specific ACLs for those named users and groups.

See here for a more detailed explanation of how to interpret the output of getfacl

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top