This lab focused on user management in Linux. I learned the difference between authorization and authentication,
and how to control system access for users through the command line. I used commands like useradd
, usermod
, userdel
, and chown
to manage users and their permissions. These actions are essential to ensuring that only appropriate individuals can access or modify sensitive system resources.
A new employee, researcher9
, joined the organization. My task was to:
researcher9
to the system.chown
to modify file ownership.
I executed each of these steps using administrative privileges via sudo
to simulate real-world user management tasks.
sudo useradd researcher9
sudo chown researcher9 /home/researcher2/projects/project_r.txt
sudo usermod -a -G sales_team researcher9
sudo userdel researcher9
This lab provided hands-on experience in essential administrative tasks that every security analyst should be comfortable performing in a Linux environment.