Lubuntu 18.04,rsync 提示“sh: rsync: 未找到命令”,已安装 rsync 版本 3.1.2

Lubuntu 18.04,rsync 提示“sh: rsync: 未找到命令”,已安装 rsync 版本 3.1.2

我正在尝试通过 ssh 将 iPhone 的根文件夹 rsync 到/home/Ryan/Downloads/iphone

$ rsync-e ssh [email protected]:/ /home/Ryan/Downloads/iphone

然后我在打印时输入密码,然后收到此信息:

sh: rsync: command not found
rsync: connection unexpectedly closed (0 bytes received so far) [reciever]
rsync error: remote command not found (code 127) at io.c(235) [reciever=3.1.2] 

我知道这是该设备的正确 IP 和名称,因为我可以单独使用 ssh 并用它dir来显示我想要复制的文件夹。

答案1

远程客户端尚未安装 rsync,因此产生sh: rsync: command not found错误。

这里有人问了同样的问题: https://superuser.com/questions/1432412/rsync-installed-but-still-getting-an-error-command-not-found/1432433

另一种方法是通过 NFS、SMB、SSHFS 等将远程数据挂载到本地。这里有一个示例:https://unix.stackexchange.com/questions/204530/copy-from-remote-server-which-doesnt-have-rsync

相关内容