QUOTE
Originally posted by Gentle Giant
Hi,
Any idea as to how I can create a new non-root user for ssh
Thanks.
sure...ssh in to your server...
su - (to get to root)
type:
useradd -c "username" username
then:
passwd username
this will create a user and group of username and a home directory of /home/username. This user will have a shell of /bin/bash (which since you want to be able to use that user in ssh..that's a good thing).