ubuntu通过ssh连接主机win7并文件传输

ssh包括ssh客户端openssh-client和ssh服务端openssh-server,通过openssh-client我们可以远程登录其他主机,而开放本机的ssh的服务我们需要有openssh-server,ubuntu默认安装了openssh-client,但没有安装openssh-server,因此我们无法在主机上通过ssh访问虚拟机内部的ubuntu。
解决该问题的方法是
sudo apt-get install -y openssh-server
在安装完成后,我们可以通过ps -ef | grep sshd来查看sshd服务是否已经启动。

看到/usr/sbin/sshd -D的时候,我们就已经启动了sshd服务否则,需要使用sudo /etc/init.d/ssh start来启动

在openssh-server已经启动以后,我们可以在主机上用普通用户来连接该ubuntu,可如果我们要用root用户连接:在安装ubuntu时,并没有任何设置root用户的操作,这是因为ubuntu默认是关闭root账户的,因此我们首先需要开启root账号,通过sudo passwd root来设置root用户的密码,当我们不需要root用户的时候,依然可以用sudo passwd -l root来锁住root账号。
在开启root账号以后,在主机上用root用户来连接该ubuntu,发现无法连接。这是sshd服务默认不支持root用户远程连接,因此我们需要修改sshd的配置文件/etc/ssh/sshd_config,将PermitRootLogin打开,并改为yes

然后用sudo service ssh restart或者sudo /etc/init.d/ssh restart来重新启动sshd服务。这样我们就可以通过root用户来ssh远程登陆虚拟机内的ubuntu了:

你可能感兴趣的:(ubuntu通过ssh连接主机win7并文件传输)