Data Transfer/SCP: Difference between revisions
Jump to navigation
Jump to search
H Schumacher (talk | contribs) (created page) |
|||
(One intermediate revision by the same user not shown) | |||
Line 6: | Line 6: | ||
== Installation == |
== Installation == |
||
SCP is already included in Linux and |
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 |
||
$ scp myfile <username>@<remotehost>: |
|||
# copy local directory to home directory |
# copy local directory to home directory |
||
$ scp -r mydirectory <username>@<remotehost>: |
|||
# copy local file to subdirectory |
# copy local file to subdirectory |
||
$ scp myfile <username>@<remotehost>:/some/remote/directory |
|||
# copy remote file to local directory |
# copy remote file to local directory |
||
$ scp <username>@<remotehost>:/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