Skip to content

Instantly share code, notes, and snippets.

@prestontimmons
Created March 29, 2010 17:39
Show Gist options
  • Save prestontimmons/348146 to your computer and use it in GitHub Desktop.
Save prestontimmons/348146 to your computer and use it in GitHub Desktop.
Managing users in Linux

Add user:

/usr/sbin/useradd -gusers -Gmgmt -s/bin/bash -pxxxx -d/home/username -m username

Change username:

/usr/sbin/usermod -l <to> <from>

Delete a user and their home directory:

/usr/sbin/userdel -r <username>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment