This account is currently not available | This account is currently not available If you get this message attempting to ssh in or su’ing as another user, there is no valid shell set for this user. You can quickly inspect this by looking at the /etc/passwd file. Check for an entry that has something like ‘/bin/false’ or ‘/bin/nologin’ for the shell: userdude:x:111:113::/home/userdude:/bin/false
How to create a user in Linux
How to create a user in Linux | How do I create a user in Linux? The old school way is to use the command useradd. Do this command to add user jsmith with a home directory: sudo useradd -d /home/jsmith -s /bin/bash -m jsmith Set the password for user jsmith by then issuing: sudo passwd jsmith It will then prompt you to
