Week 2: Linux System Administration & Automation
1. Create a user devops_user and add them to a group devops_team
Create a group
Command:
sudo groupadd devops_team
Create a user and assign them to the group
sudo useradd -m -G devops_team devops_user
2. Set a password and grant sudo access.
Command:...
user-group-management.hashnode.dev1 min read