我使用此命令将文件从Window复制到Linux并使用用户“fred”,它是成功的
pscp c:\ temp \ example-hosts.txt fred@10.53.x.x:/ etc / hosts
但是如果我的用户名是域用户,例如:domain \ fred。我收到错误:不支持远程源
pscp c:\ temp \ example-hosts.txt domain \ fred@10.53.x.x:/ etc / hosts
你知道如何解决这个问题吗?
答案 0 :(得分:0)
为用户添加-l
标志
pscp -l domain\fred c:\temp\example-hosts.txt 10.53.x.x:/etc/hosts