[add new user in linux]
# Create a user
adduser $USERNAME
usermod -aG wheel $USERNAME
usermod -aG sudo $USERNAME
# Testing the user
su - $USERNAME
# Disable SSH Root login
# Uncomment (if it is commented) the directive PermitRootLogin and set its value to NO
sudo mcedit /etc/ssh/sshd_config
# Restart SSDH to apply
sudo systemctl restart sshd
# OR
sudo service sshd restart