Similar Problems
How do I add users on Ubuntu Server?
TweetI need to add a user. Then list the available groups on the system. Then add the user to one of the groups. Then set the password.
10 years ago by |
$> sudo useradd -d /home/ksnyder -m ksnyder -s /bin/bash $> sudo cat /etc/groupcat $> sudo usermod -a -G users ksnyder $> sudo passwd ksnyder |