Last active
September 28, 2016 18:16
-
-
Save gautamr/168f3340a986728037544ba5c3fd84d0 to your computer and use it in GitHub Desktop.
Linux commands (run on Ubuntu 14.04 LTS)
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
# add user; you need to set all things manually | |
useradd gautamr | |
# better to do this; home etc. will be created | |
adduser gautamr | |
# set the password for gautamr | |
passwd gautamr | |
# add sudo permission to gautamr | |
sudo usermod -aG sudo gautamr |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment