EN
Linux - add user to specific group
6
points
In this article, we're going to have a look at how to add user to specific group in Linux.
Simplest way is to use usermod
command as super user (user with special permissions).
Quick solution:
usermod -a -G new-group some-user
Where:
-a
- adding new group,-G
- other user groups modification (not main user group),new-group
- new group assigned tosome-user
,some-user
- name of user that we modify.
Check following example to know how to do it:
1. Add user to existing group example
In this section we would like to show how add some user to avaialble group - in this example sudo
group.
Note be sure you are logged-in as user with special permissions, e.g. super user /
root
.
- If you are not, login to
root
account with command:su
It will ask you to type
root
password and press enter key:john@ubuntu-pc:~$ su Password:
- Then add user to group with command:
usermod -a -G sudo john
Note:
sudo
group can be replaced with any existing group name. - Then check if the user has been attached to the group with command:
groups john
It should return something similar:
root@ubuntu-pc:/home/john# groups john john : john cdrom sudo
If
sudo
group name is printed it means we are in the group.