Skip to content
Snippets Groups Projects
Unverified Commit 393d483c authored by Lukas Kluft's avatar Lukas Kluft
Browse files

Remove scp example

We should only **recommend** one solution (here, rsync).
parent 261636ae
No related branches found
No related tags found
1 merge request!80Update "command line" lecture
...@@ -146,23 +146,16 @@ Different ways to work on a cluster depending on the task: ...@@ -146,23 +146,16 @@ Different ways to work on a cluster depending on the task:
## Remote file transfer {auto-animate=true} ## Remote file transfer {auto-animate=true}
* There are different tools to transfer between your local machine and a remote server * There are various tools to transfer data between your local machine and a remote server (e.g. [`scp`](https://linux.die.net/man/1/scp), [`rsync`](https://linux.die.net/man/1/rsync), [`uftp`](https://uftp-multicast.sourceforge.net))
* For single files, a simple `scp` is sufficient * `rsync` is a powerful option available on most machines
```{raw}
scp <YOUR_USERNAME>@levante.dkrz.de:file_in_home .
```
* `rsync` is a more powerful alternative
```{raw} ```{raw}
rsync <YOUR_USERNAME>@levante.dkrz.de:file_in_home . rsync <YOUR_USERNAME>@levante.dkrz.de:file_in_home .
``` ```
## Remote file transfer {auto-animate=true visibility="uncounted"} ## Remote file transfer {auto-animate=true visibility="uncounted"}
* There are different tools to transfer between your local machine and a remote server
* For single files, a simple `scp` is sufficient * There are various tools to transfer data between your local machine and a remote server (e.g. [`scp`](https://linux.die.net/man/1/scp), [`rsync`](https://linux.die.net/man/1/rsync), [`uftp`](https://uftp-multicast.sourceforge.net))
```{raw} * `rsync` is a powerful option available on most machines
scp levante:file_in_home .
```
* `rsync` is a more powerful alternative with more options
```{raw} ```{raw}
rsync levante:file_in_home . rsync levante:file_in_home .
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment