SCP 失败 - 无错误

SCP 失败 - 无错误

SCP 已经正常工作了一年或更长时间,现在没有任何内容被传输,但也没有捕获到任何错误。

/home/users/temp_test . scp delete.me [email protected]

ssh 给出以下内容:

/home/users/temp_test . ssh [email protected]
XXX Server supporting SFTP and SCP
This server does not support an interactive session.
Goodbye.
Connection to target.com closed.

警告 - 不是 Linux/Unix 专家。出于隐私考虑,服务器名称和路径已更改。

答案1

你写过

/home/users/temp_test . scp delete.me [email protected]

我假设这/home/users/temp_test .是提示符,因此可以完全忽略(这个点很令人困惑,因为它在许多 shell 中都是有效的指令)。这留下

scp delete.me [email protected]

在这里,没有远程路径。您有两个名为delete.me和 的本地文件(在当前目录中)[email protected]。您可以通过 确认这一点ls。远程路径必须包含一个冒号 ( :) 将 [user@]host 组件与路径组件分隔开。

也许你的意思是这个

scp delete.me [email protected]:

相关内容