SecureCRT连接Ubuntu报The remote system refused the connection.解决方案
来自ling
ps -ef|grep ssh
发现只有ssh-agent进程,而没有sshd进程,缺省情况下没有安装ssh-server 在终端中敲入以下命名安装openssh-server即可
sudo apt-get install openssh-server
安装过程如下,网络快的话两分钟左右,安装完毕后再次使用ps -ef|grep ssh命令查看sshd进程是否运行,如果正常运行使用SecureCRT重新尝试连接即可。