Originally posted by: mh47g
For Windows I use FreeSSHd, but now I am using Ubuntu. Is there a linux-like version of FreeSSHd?
Thanks,
Bill
Openssh is what you want. Install it with:
# sudo apt-get install openssh-server
By default, all users on the system will be able to connect through ssh and get a console and transfer files with scp/sftp. The only other option would be if you don't want your users to be able to get a remote console, then you could use the scponly package (which actually provides sftp or scp).
You can install scponly with:
# sudo apt-get install scponly
I do not know about configuration with scponly though.