SecureCRT连接Ubuntu失败,
提示:The remote system refused the connection.
Ubuntu默认未安装ssh server 端
使用命令,安装即可。
sudo apt-get install openssh-server openssh-client
重启Ubuntu,默认已经开启ssh功能。
如果还是未连接,则
启动ssh-server:
/etc/init.d/ssh restart
检查ssh-server运行:
netstat -tlp
注:其中有ssh,则已启动运行。
ssh -l tskk localhost
测试即可。