AD Security Group Linux - Henryisgreat/GROUP14Final GitHub Wiki

Overview

Create a Linux security group in which members have sudo privileges.

Steps

  • Create a group called linux-admins and add a specified user with the following commands

groupadd -g 123 linux-admins && usermod -G linux-admins -a user

  • Add the group to the sudoers file with echo "%GROUP14.local\\linux-admins ALL=(ALL)ALL"