Last active
August 29, 2015 13:56
-
-
Save igorparrabastias/9250511 to your computer and use it in GitHub Desktop.
Centos: Root priviliged user creation / Creación de usuario con privilegios de root
This file contains hidden or 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
sudo adduser username | |
sudo passwd username | |
sudo visudo | |
## Allow root to run any commands anywhere | |
root ALL=(ALL) ALL | |
username ALL=(ALL) ALL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment