how to add a group in unix
December 12th, 2005 by Lawrence David
in unix, when you’d like to make another group, go with:
sudo groupadd [groupname]
December 12th, 2005 by Lawrence David
in unix, when you’d like to make another group, go with:
sudo groupadd [groupname]
i had a 3 groups in my unix server how add anther group in user
I had to do “sudo /usr/sbin/groupadd [groupname]” because /usr/sbin wasn’t on my path.
this answer to shankar, Hi shankar just type groupadd -g 150 group1. 150 is the group ID, group1 is the name of the group.