How to add new user in Ubuntu

sudo useradd xie001 -m -s /bin/bash
passwd xie001

Here is an explanation of the options used:

  -m, --create-home             create the user's home directory
  -s, --shell SHELL             login shell of the new account

你可能感兴趣的:(How to add new user in Ubuntu)