useradd -c "User's Full Name" account_name # Creating a user account
useradd sysadmin2 -u 4201 -g 4200 -m -s /bin/bash # creating user with UID, GID, Shell and create home directory
# Options
# -n - minimum password lifetime in days
# -x - maximum password lifetime in days
# -w - warning before expiration in days
# -i - inactive to disabled in days
passwd account_name # changing the user password
passwd -S account_name # status of the user
passwd -e account_name # force expire the password for user
passwd -l account_name # lock the password for the user
passwd -u account_name # unlock the password for the user
userdel -r account_name