user - Easy linux permissions inquiry -
i want give user full rwx permission on directory (recursively), including files or subdirectories may created in future. not want make them owner of directory. syntax should use? - debbie
you've got 2 choices:
a) user in group owns directory tree
- use group permission:
chmod -r g+rwx thedir
b) user not in group owns directory tree
- use "everyone else" permission flags:
chmod -r o+rwx thedir
Comments
Post a Comment