Windows上使用SecureCRT软件连接Linux终端 — 解决问题;The remote system refused the connection

不正常的情况:The remote system refused the connection.

如果你遇到这个问题,说明你的Linux系统里面没有安装openssh-server

sudo apt-get install openssh-server

aobosir@ubuntu:~$ ps -e | grep ssh
 3834 ?        00:00:00 sshd

执行完下面的命令,系统会自动注销(Logout)。

ssh-agent restart
# 已经没有这个命令了。替代的方法就是:重启系统或者注销系统。

现在查看一下,现在就可以进入了正常使用的状态。

aobosir@ubuntu:~$ ps -e | grep ssh
 3834 ?        00:00:00 sshd
 4116 ?        00:00:00 ssh-agent
 

你可能感兴趣的:(repo/git/svn)