Posted: 8/8/2004 12:08:27 AM EDT
|
i installed OpenSSH for windows, but unfortunately i'm not too familiar with unix commands. how do i add a login name and password for a remote user? thnx. |
| As root simply type in "useradd user_name". To set the password for your new user type "passwd user_name" and you will then be prompted to type in a password for that user. If you want to remove a user just type "userdel user_name" or "userdel -r username" if you want to remove their home directory along with the user since a home directory will automatically be created when a user is created. |