Introduction
The Linux command line provides a powerful tool for managing user accounts and groups. One of the most common tasks is to add a new group to the system. In this tutorial, we will show you how to add a new group with the group name “developers” and group ID “1000” using the Linux command line. We will also discuss the various options available for managing groups and users.
Examples
sudo groupadd -g 1000 developers
To add a new group with group name “developers” and group ID “1000”, use the following Linux command:
sudo groupadd -g 1000 developers