Permissions and User management
Change group ownership
The code below will associate a folder to a specific group. This is helpful when you are associated with more than one groups and the default group assigned to a file you created is not for the intended group.
Ensure the group ownership and permissions of the target directory are properly set if multiple users in the gemini group need access. For example, to make all new files inherit the gemini group:
Recursively change a folder's ownership
File permissions using chmod
The code below will give read, write, and execute permissions to all the group members. A minus sign after g e.g. g-wx
will take away write and execute permissions.
Add a new user
The command below will add a new user to a Linux system, create their home directory at /home/newuser
and set the default shell to /bin/bash
.
The command below set the password for the new user.
List all the users that have a home directory
Delete a user
The command below will delete a user without deleting their home directory.
To delete the home directory as well.Login as another user
To login as a newly created user