Introduction
Welcome to the lab on Groups of Linux. Linux groups are an essential feature for managing user access and permissions. In this lab, you will learn how to create and delete groups, as well as manage group membership using groupadd
and groupdel
commands.
For the purpose of this lab, we will use the following specific user name and group name:
- User name:
johndoe
- Group name:
devs
Skills Graph
%%%%{init: {'theme':'neutral'}}%%%%
flowchart RL
linux(("`Linux`")) -.-> linux/UserandGroupManagementGroup(["`User and Group Management`"])
linux/UserandGroupManagementGroup -.-> linux/groups("`Group Displaying`")
linux/UserandGroupManagementGroup -.-> linux/groupadd("`Group Adding`")
linux/UserandGroupManagementGroup -.-> linux/groupdel("`Group Removing`")
linux/UserandGroupManagementGroup -.-> linux/sudo("`Privilege Granting`")
subgraph Lab Skills
linux/groups -.-> lab-13397{{"`Groups of Linux`"}}
linux/groupadd -.-> lab-13397{{"`Groups of Linux`"}}
linux/groupdel -.-> lab-13397{{"`Groups of Linux`"}}
linux/sudo -.-> lab-13397{{"`Groups of Linux`"}}
end