Access-Control

Author: Neil Jianzhang Ni

Date: 22-May-2024

Change Access

Personal Access

chmod 700 <directory/file_name>

This command sets the permissions so that only the owner(user not project group) of the directory has full control.

Group Access

If you want the members of your project have full access to the directory, you can use the following command:

chgrp <one_of_your_group> <directory/file_name>
chmod 770 -R <directory/file_name>