Linux Add User

How To Create Users Within Linux

Create user with home directory:

1
useradd -m lukas

Change password

1
passwd lukas

Add user to group proxy

1
usermod -a -G proxy lukas

list of all Groups

1
cat /etc/group