User management - ataraxialinux/ataraxia GitHub Wiki
Introduction
Welcome to the "User management" page! On this page, we're explaining the usage of Ataraxia GNU/Linux's user utilities.
Adding users
Adding users in Ataraxia made very simple! You just have to use useradd
command:
useradd -m -G users [your user]
And it will automatically ask for password, but you can hit "Enter" key multiple times to avoid using of passwords.
Deleting users
Deleting users is also very simple:
userdel -r [your user]
Adding users in groups
Adding users in groups also made simple as possible:
usermod -aG [your group] [your user]
Deleting users from groups
It's same as adding users in group, but command called delgroup
:
gpasswd -d [your user] [your group]