June 2016
Beginner
456 pages
9h 31m
English
Group is a way to organize and administer user accounts in Linux. Groups are used to collectively assign rights and permissions to multiple user accounts.
You will need super user or root privileges to add a group to the Ubuntu server.
Follow these steps to create a group:
$ sudo addgroup guest
addgroup with root privileges.Here, we are simply adding a new group guest to the server. As addgroup needs root privileges, we need to use sudo along with the command. After creating a new group, addgroup displays the GID of the new group.
Similar to adduser, you can use addgroup in different modes:
Read now
Unlock full access