Skip to content

Instantly share code, notes, and snippets.

@jbalzar
Last active April 24, 2016 07:51
Show Gist options
  • Save jbalzar/a89c3d223e5dfd41b84b3ca7b47bb602 to your computer and use it in GitHub Desktop.
Save jbalzar/a89c3d223e5dfd41b84b3ca7b47bb602 to your computer and use it in GitHub Desktop.
Create user and add to sudoer
# Create new user
sudo useradd liz
# Set password for user
sudo passwd liz
# Add user to wheel group
sudo usermod -g wheel liz
# Check user group
groups liz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment