529

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,707
omega
  • 5,797
  • 1
    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" > debian@10.42.4.66:/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 – sakisk Jun 08 '17 at 19:23

6 Answers6

789

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
  • 56,709
  • 26
  • 150
  • 232
heemayl
  • 56,300
26

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,563
25
scp root@10.240.179.4:/root/Jmeter/reports.jtl Downloads/
jasonwryan
  • 73,126
14
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
  • 333,661
5

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.

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 root@178.62.54.83:~/folderinremoteuserdir ~/folderinlocaluserdir

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