Ubuntu is a great place to start for new users and students learning how to use and manage Linux systems. It’s a great platform for beginners to start learning Linux. Ubuntu is an open-source Linux operating system that runs on desktops, laptops, servers, and other devices. About groupadd command: The groupadd command is used by system administrators to add/create groups on Linux systems. It allows superusers to perform basic group management on Ubuntu and other Linux platforms. Like using your mouse and keyboard to add groups or manage settings in the GUI. the groupadd is the way to do it on the command line. Syntax: The syntax is the rule and format of how the groupadd command can be used. the syntax’s options can be reordered. but a straight format must be followed.,. Below is an example syntax of how to use the groupadd command. Options: The command line options are switches or flags that determined how the commands are executed or controlled. they modify the behavior of the command. they are separated by spaces and followed after the commands options. Below are some options for the groupadd command: Examples: Below are some examples of how to run and use the groupadd on Ubuntu Linux. If you want to create a new group named members, you run the commands below. If you wish to create a members group with a GID of 8080, you run the commands below. by default, if you don’t specify a GID for a group, Linux automatically assigns one. If you’re not logged in as a root account, you may have to use the sudo command it it. When it is assigning the automatic group id, it uses the GID_MIN, and GID_MAX values specified in the /etc/login.defs config file. f you want to set your values, you can specify that using the -K option as shown below In the example above, the groupadd command created the account with group id 8081, which is between the values 8000 – 9999 that we specified in the command line. When you run groupadd with the –help option, you’ll see the help text below: That’s it! Hope you like it and please come back soon for more Ubuntu Linux commands!