如何从远程服务器保存文件

如何从远程服务器保存文件

我不确定这个问题是否属于这里,所以请随意迁移。

我在邮件服务器上有一些文件(我不确定它是如何工作的,但我可以通过 ssh 连接邮件服务器并使用电子邮件 ID 和密码登录从 Linux 终端访问这些文件)。

这是我在终端上输入的内容

~$ ssh <enter email id here>
 <email id>'s password:*******

这给了我这个。

Welcome to Ubuntu 12.04.3 LTS (GNU/Linux 3.8.0-44-generic x86_64)

* Documentation:  https://help.ubuntu.com/

System information as of Thu Aug  7 15:22:21 IST 2014

System load:  0.55                Processes:           178
Usage of /:   20.4% of 223.17GB   Users logged in:     3
Memory usage: 46%                 IP address for eth0: 14.139.157.212
Swap usage:   0%

Graph this data and manage this system at https://landscape.canonical.com/

You have mail.
Last login: Wed Aug  6 17:05:46 2014 from is.isibang.ac.in
bmat1420@ms:~$ ls
cipher    examples.desktop  mail       roots    rot8    stars    try.txt
cipher.c  junk              oldrot8.c  roots.c  rot8.c  stars.c

我如何将这些文件保存到桌面?

答案1

您可以使用SCP命令

对于你的情况,如果你想复制“邮件”文件夹,你可以使用如下命令

scp -r user@host:mail ~/Desktop

获取只有您可以使用的 cipher.c 文件

scp user@host:cipher.c ~/Desktop

相关内容