Problem Statement
Which command creates a new user account?
Explanation
useradd creates a new user account on the system. It can also specify home directories, groups, and shells.
The adduser command is a user-friendly wrapper available in some Linux distributions.
Code Solution
SolutionRead Only
sudo useradd -m -s /bin/bash devuser
Practice Sets
This question appears in the following practice sets: