505

In my terminal shell, I ssh'ed into a remote server, and I cd to the directory I want.

Now in this directory, there is a file called table that I want to copy to my local machine /home/me/Desktop.

How can I do this?

I tried scp table /home/me/Desktop but it gave an error about no such file or directory.

Does anyone know how to do this?

рüффп
  • 1,677
  • 4
  • 27
  • 35
omega
  • 5,537
  • 5
  • 18
  • 14
  • If you find yourself copying with scp often, you can mount the remote directory in your file browser and drag-and-drop. On my Ubuntu 15 host, it's under the menu bar "Go" > "Enter Location" > `[email protected]:/home/debian`. Alternatively, one can use `sshfs` to mount the remote machine's filesystem on the host. But that setup is a little more involved. – ConvexMartian Nov 28 '16 at 19:46
  • Give `rsync` a try. It's great both for local and remote copies, gives you copy progress, etc. An [example](https://github.com/faif/shell-utils/blob/master/shell-utils.sh#L426) – sakisk Jun 08 '17 at 19:23

6 Answers6

753

The syntax for scp is:

If you are on the computer from which you want to send file to a remote computer:

scp /file/to/send username@remote:/where/to/put

Here the remote can be a FQDN or an IP address.

On the other hand if you are on the computer wanting to receive file from a remote computer:

scp username@remote:/file/to/send /where/to/put

scp can also send files between two remote hosts:

scp username@remote_1:/file/to/send username@remote_2:/where/to/put

So the basic syntax is:

scp username@source:/location/to/file username@destination:/where/to/put

You can read man scp to get more ideas on this.

Rui F Ribeiro
  • 55,929
  • 26
  • 146
  • 227
heemayl
  • 54,820
  • 8
  • 124
  • 141
  • 5
    What if I want to copy multiple files? I added a space and just used another ```/file/to/send``` Thanks for your awesome answer! – camdixon Jul 12 '16 at 18:30
  • 17
    `scp -r` will copy recursively. – Henry Aug 10 '16 at 21:10
  • 2
    What i want to copy the files from network to my VM ...how to achieve the same using scp – Sushivam Nov 16 '16 at 12:48
  • 3
    @heemayl +1 for the good answer. Thought to add that in the case that it is a secure connection (that requires an authentication) you can use the following (for copying file from local to remote): scp -i mykey.pem somefile.txt [email protected]:/some/folder/in/remote – Guy Avraham Oct 19 '17 at 10:48
  • 5
    Use `scp -P 123` to specify custom port – ᴍᴇʜᴏᴠ Dec 28 '17 at 12:52
  • 2
    If i have an ssh session active, then i have to exit ssh session to scp from remote to local. is there any other way? – unknownerror Feb 01 '19 at 07:14
  • [Here's a brief video showing the process](https://youtu.be/8eyfmp7dtYk), including the bit about the secure connection. – Brady Dowling Aug 20 '19 at 00:05
  • what if we require to login to ssh by .pem file, is there a way to copy file while we stay inside the connection as i'll be able to do it as sudo – Habib Rehman Jan 29 '22 at 20:10
  • 1
    This doesn't cover the case mentioned in the question, where you are ssh'd into a remote server and want to copy a file from that remote server to a local machine. Neither does the video mentioned in [this previous comment](https://unix.stackexchange.com/questions/188285/how-to-copy-a-file-from-a-remote-server-to-a-local-machine#comment994329_188289). How can one use scp or rsync when already ssh'd into a remote server? – Mike Eng Mar 17 '22 at 00:58
25

You can use rsync as an alternative. It is mainly for syncing files.. but you can use it for this purpose as well.

rsync -avzh --stats --progress remoteuser@remoteip:/path/  localpath 

to add ssh options:

rsync -e "ssh -P $port_value" remoteuser@remoteip:/path/  localpath

--progress and --stats are useful for real-time display of transfer.

I think it a better option then SCP, since it skips already transferred files, which is noticeable when you're copy-ing lot of files.

fugitive
  • 1,543
  • 19
  • 33
23
scp [email protected]:/root/Jmeter/reports.jtl Downloads/
jasonwryan
  • 71,734
  • 34
  • 193
  • 226
user135545
  • 231
  • 2
  • 2
13
scp username@ipaddress:pathtofile localsystempath

scp sadananad@ipaddress:/home/demo/public_html/myproject.tar.gz .

If your using with port:

scp -Pportnumber username@ipaddress:pathtofile localsystempath 

scp -P2233 sadananad@ipaddress:/home/demo/public_html/myproject.tar.gz .
Kusalananda
  • 320,670
  • 36
  • 633
  • 936
4

If you completely trust everyone in the network and you can connect a port of the destination machine directly, you can use netcat: nc.

Let's say the IP address of the destination machine is 192.168.1.123

On the destination run:

nc -l -p 7777 0.0.0.0 | tar zxvf - -C dest_dir

You can choose a different port, and also bind to another IP of your interfaces, 0.0.0.0 just catches on all interfaces.

On the source run:

tar zcvf - filename | nc 192.168.1.123 7777

IMHO, this is the fastest possible way to send a file from one computer to another using digital networks.

The arguments and command line options might slightly change between different versions of nc and tar, but it will definitely work with recent Linux distributions.

onur güngör
  • 1,274
  • 8
  • 14
3

On Linux, to copy a folder and its content from the user (root in this example) directory, to a folder in the local user directory, I run this command on the local machine:

scp -r [email protected]:~/folderinremoteuserdir ~/folderinlocaluserdir

Note the ~/ which I often seem to forget...

Little Brain
  • 211
  • 2
  • 4