How do i create a group for users i have already created on Ubuntu? I have tried several things but it won't work.
Asked
Active
Viewed 569 times
-1
-
Follow the instructions in this answer to do it the GUI way: http://askubuntu.com/a/66727/364819 – Jan 09 '15 at 15:27
1 Answers
2
At the terminal, you can create a new group using
sudo groupadd GroupName
and then you can add a user using
sudo useradd -G GroupName UserName

Harris
- 2,598