Create New User With No Privileges

For a system user:

adduser --system --gid 100 --disabled-password --disabled-login --no-create-home --shell /bin/false UserName

For a normal non-system user that needs ssh access, it has to be created like this:

adduser --gid 100 --disabled-password --shell /bin/bash UserName
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License