I added group using the command in terminal as,
$ sudo addgroup XXX
And I add user under that group,
$ sudo adduser --ingroup XXX YYY
Now, I need to remove the same group as well as user(s), how to do?
I added group using the command in terminal as,
$ sudo addgroup XXX
And I add user under that group,
$ sudo adduser --ingroup XXX YYY
Now, I need to remove the same group as well as user(s), how to do?
You have to run
sudo deluser <username> <groupname>
to delete a user from it's corresponding group. And run thissudo deluser --group <group name>
command to delete a group.