ACLs komfortabel anzeigen

Author: | Posted in Solaris No comments

ACLs sind ein leidiges Thema unter Unix. Mit Solaris 10 wurden ACLs ein bisschen komfortabler: die Option -v und -V zeigen die ACLs komfortabel an.
-v The same as -l, except that verbose ACL information
is displayed as well as the -l output. ACL informa-
tion is displayed even if the file or directory
doesn’t have an ACL.

-V The same as -l, except that compact ACL information
is displayed after the -l output.

root@newponit # ls -dv .
drwxr-xr-x 15 root sys 15 Aug 31 15:22 .
0:owner@::deny
1:owner@:list_directory/read_data/add_file/write_data/add_subdirectory
/append_data/write_xattr/execute/write_attributes/write_acl
/write_owner:allow
2:group@:add_file/write_data/add_subdirectory/append_data:deny
3:group@:list_directory/read_data/execute:allow
4:everyone@:add_file/write_data/add_subdirectory/append_data/write_xattr
/write_attributes/write_acl/write_owner:deny
5:everyone@:list_directory/read_data/read_xattr/execute/read_attributes
/read_acl/synchronize:allow


root@newponit # ls -dV .
drwxr-xr-x 15 root sys 15 Aug 31 15:22 .
owner@:————–:——:deny
owner@:rwxp—A-W-Co-:——:allow
group@:-w-p———-:——:deny
group@:r-x———–:——:allow
everyone@:-w-p—A-W-Co-:——:deny
everyone@:r-x—a-R-c–s:——:allow

Add Your Comment

Your email address will not be published. Required fields are marked *