Answers for "how to amnually create a user in linux"

24

how to make new user linux termil

sudo useradd -m username

#set user password
sudo passwd username

#add user to sudoers [DANGEROUS]
usermod -aG sudo username
Posted by: Guest on April-25-2020
0

linux add user

sudo adduser "username" #more interactive than useradd (ubuntu based)
Posted by: Guest on January-26-2022

Code answers related to "how to amnually create a user in linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language