Come salvare i file dal server remoto


1

Non sono sicuro che questa domanda rientri qui, quindi sentiti libero di migrare.

Ho alcuni file su un server di posta (non sono sicuro di come funzioni, ma posso accedervi dal terminale Linux inviando il server di posta e accedendo con ID e password e-mail).

Questo è ciò che entro su un terminale

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

Il che mi dà questo.

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

Come posso salvare questi file sul desktop?

Risposte:


3

Puoi usare il comando scp

Nel tuo caso, se vuoi copiare la cartella 'mail', useresti un comando come questo

scp -r user@host:mail ~/Desktop

per ottenere il file cipher.c solo tu puoi usare

scp user@host:cipher.c ~/Desktop
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.