如何将网络上不同 ubuntu 机器上的文件复制到本地 ubuntu 机器

如何将网络上不同 ubuntu 机器上的文件复制到本地 ubuntu 机器

我正在尝试使用以下命令将文件从 ubuntu 计算机(IP 为 10.46.57.44)复制到我的 ubuntu VMware Player 上的当前目录,但该命令看起来不正确?有人可以建议什么是正确的命令吗?

scp [email protected]:/local/mnt/workspace/kernel_db/new/linux-headers-3.10.0+_3.10.0+-10.00.Custom_i386.deb

答案1

如果你输入,scp你会看到:

usage: 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 file/to/copy [email protected]:/where/to/copy/

但是,要使用,scp您需要确保 ssh 服务器在主机上正常运行。您可以尝试简单地输入要连接的 IP 地址。ssh [email protected]0.0.0.0

答案2

例如,

SCP[电子邮件保护]:/local/mnt/workspace/kernel_db/new/linux-headers-3.10.0+_3.10.0+-10.00.Custom_i386.deb<destionation>

scp [email protected]:/local/mnt/workspace/kernel_db/new/linux-headers-3.10.0+_3.10.0+-10.00.Custom_i386.deb [email protected]:/destination_folder

呼呼!

相关内容