Data Transfer/SCP: Difference between revisions

From bwHPC Wiki
Jump to navigation Jump to search
(created page)
 
 
(One intermediate revision by the same user not shown)
Line 6: Line 6:
== Installation ==
== Installation ==


SCP is already included in Linux and Mac. On Windows 11 and updated Windows 10 versions it can be used with the PowerShell.
SCP is already included in Linux, Mac OS and Windows. On Windows 10 and higher it can be used with e.g. PowerShell or Windows-Terminal.


== Usage ==
== Usage ==
Line 14: Line 14:


<pre># copy local file to home directory
<pre># copy local file to home directory
&gt; scp myfile &lt;username&gt;@&lt;remotehost&gt;:
$ scp myfile &lt;username&gt;@&lt;remotehost&gt;:


# copy local directory to home directory
# copy local directory to home directory
​​​​​​​> scp -r mydirectory <username>@<remotehost>:
$ scp -r mydirectory <username>@<remotehost>:


# copy local file to subdirectory
# copy local file to subdirectory
&gt; scp myfile &lt;username&gt;@&lt;remotehost&gt;:/some/remote/directory
$ scp myfile &lt;username&gt;@&lt;remotehost&gt;:/some/remote/directory


# copy remote file to local directory
# copy remote file to local directory
&gt; scp &lt;username&gt;@&lt;remotehost&gt;:/some/remote/directory myfile</pre>
$ scp &lt;username&gt;@&lt;remotehost&gt;:/some/remote/directory myfile</pre>

Latest revision as of 16:32, 26 February 2025


SCP is a network protocol used for simple copy operations. It builds on ssh and usually works on every machine, that you can connect to via ssh.


Installation

SCP is already included in Linux, Mac OS and Windows. On Windows 10 and higher it can be used with e.g. PowerShell or Windows-Terminal.

Usage

If you want to compress your files, use the -C option.
To preserve date and time use the -p option.

# copy local file to home directory
$ scp myfile <username>@<remotehost>: 

# copy local directory to home directory
$ scp -r mydirectory <username>@<remotehost>:

# copy local file to subdirectory
$ scp myfile <username>@<remotehost>:/some/remote/directory 

# copy remote file to local directory
$ scp <username>@<remotehost>:/some/remote/directory myfile