这个问题类似于Virtual Box ssh 无法在 Virtual Box Ubuntu 机器上运行。我实际上已经让 ssh 工作了,但现在我想使用 scp 将文件从本地计算机传输到远程计算机。
命令
scp myLocalAccount@localIP:~/filename remoteUserName@remoteIP:~/path
导致错误
ssh: connect to host (localIP) port 22: Connection refused
我的本地机器是在 Windows 7 原生环境中在 VMWare 下运行的虚拟 Ubuntu 机器。
我做错了什么?还有其他转移方法可以尝试吗?
答案1
如果您想将本地文件传输到远程系统,请使用以下命令:
scp ~/filename remoteUserName@remoteIP:~/path
不要将您的本地用户 ID 和系统放在要传输的文件的名称前面。