pscp 将文件从 Windows 远程复制到 Linux

ser*_*nni 7 windows linux ssh

我需要将文件从我的 Windows XP 系统复制到远程 Linux 系统。

获胜位置:c:\1.txt
Linux 位置:/tmp

命令应该是什么?

编辑: pscp 在我的 PC 上被识别并且正常。我可以用 Putty 连接到这台远程 Linux PC
远程 Linux 名称是s1,主机名是s1host

我尝试使用以下命令传输文件:

pscp C:\1.txt s1@s1host:/tmp
Run Code Online (Sandbox Code Playgroud)

得到了:Fatal: Network error: Connection timed out

不清楚,是命令不行吗?

小智 8

pscp c:\1.txt username@hostname:/tmp
Run Code Online (Sandbox Code Playgroud)

替换usernamehostname对 Linux 系统有效的那些。