Created
July 30, 2013 20:41
-
-
Save icholy/6116719 to your computer and use it in GitHub Desktop.
adding user to sudoers on slackware
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
$ su | |
$ groupadd sudo | |
$ VISUAL=vim sudoedit /etc/sudoers | |
# uncomment the following or add if it doesn't exist | |
# | |
# %sudo ALL=(ALL) ALL | |
# | |
$ usermod -aG sudo <user> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment