Beginning_ubuntu_远程连接

Ubuntu开启SSH服务

查看sshserver是否启动

ps -e | grep ssh

安装openssh-server

sudo apt-get install openssh-server

启用服务

sudo /etc/init.d/ssh start

即可通过putty、WinSCP等通过SSH远程连接

禁用密码登录,使用密钥登录

参见:http://blog.csdn.net/permike/article/details/52386868

是sshd_config!不是ssh_config!

你可能感兴趣的:(Beginning_ubuntu_远程连接)