-1

How do i create a group for users i have already created on Ubuntu? I have tried several things but it won't work.

1 Answers1

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,588