This lesson shows how to manage groups in Linux using commands. First, you list existing groups with 'getent group'. Then, you create a new group called 'developers' using 'sudo groupadd developers'. Next, you add the user 'alice' to this group with 'sudo usermod -aG developers alice'. Finally, you verify alice's group membership with 'groups alice', which should show 'alice developers'. The '-aG' option is important to add the user to the group without removing existing groups. Commands like 'groupadd' and 'usermod' do not show output when successful. This process helps organize users by groups for permissions and access control.