Add new user in linux with home directory and /bin/bash
sudo useradd -s /bin/bash -m -c "Full Name" user
The command is composed of:
sudo: We need administrator privileges to allow a new user to access the computer.
useradd: The useradd command.
-s /bin/bash: The shell option. This sets the default sh...
blog.ahmadullah.in1 min read