Skip to content

Instantly share code, notes, and snippets.

@alkesh
Created November 30, 2010 11:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alkesh/721545 to your computer and use it in GitHub Desktop.
Save alkesh/721545 to your computer and use it in GitHub Desktop.
Create user on Debian or Centos
# Debian
adduser <user>
adduser <user> admin
passwd -e <user>
# Centos
useradd -G wheel <user>
passwd <user>
chage -d 0 <user>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment