Last active
April 24, 2016 07:51
-
-
Save jbalzar/a89c3d223e5dfd41b84b3ca7b47bb602 to your computer and use it in GitHub Desktop.
Create user and add to sudoer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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