我有两个网络附加存储 (NAS)。我尝试使用 Windows Subsystem for Linux 将nasA
(IP 结尾为 .69) 上的目录镜像到(IP 结尾为 .11) 上。nasB
在我的笔记本电脑上,我通过 SSH 连接到 nasA 并尝试此操作......
rsync -a /volume1/test [email protected]:/volume1/test
但我收到以下错误信息:
Current status: 255 (Interrupted)
Standard output/error:
Host key verification failed.
rsync error: unexplained error (code 255) at io.c(254) [sender=3.1.2]
如果我尝试通过 SSH 连接到 nasA(仍然在我的 Windows 笔记本电脑上)
rsync -a [email protected]:/volume1/movies/prerolls [email protected]:/volume1/movies/prerolls
我明白了
The source and destination cannot both be remote.
有任何想法吗?
谢谢P