在 ubuntu 终端中将本地文件复制到远程服务器

在 ubuntu 终端中将本地文件复制到远程服务器

天哪,当你需要 Windows 拖放功能时它在哪里呢?我该如何完成这个简单的任务?

在 Ubuntu 终端中我有提示:

metheuser@metheuser-HP-Pavilion-g6:~$

我做到了:

metheuser@metheuser-HP-Pavilion-g6:~$ cp thefilethefilethefile.txt  [email protected]

按下 ENTER 键,我得到的只是再次提示:metheuser@metheuser-HP-Pavilion-g6:~$

然后我登录[email protected],但该文件不在根目录中。

我也尝试过:

scp thefilethefilethefile.txt [email protected]

毫无效果。如能得到任何帮助我将不胜感激。

答案1

man scp

 scp [-12346BCpqrv] [-c cipher] [-F ssh_config] [-i identity_file]
     [-l limit] [-o ssh_option] [-P port] [-S program]
     [[user@]host1:]file1 ... [[user@]host2:]file2

请注意,两个主机规范都包含:scp使用 来:确定参数是主机名还是另一个文件。因此,您需要在:主机名后面包含 :

scp thefilethefilethefile.txt [email protected]:

远程路径是可选的:如果没有给出,则默认为远程服务器上的主目录。

相关内容