Update Documentation authored by Peter Heger's avatar Peter Heger
......@@ -210,11 +210,11 @@ Please note: You can transfer data ONLY to the login nodes (ramses1 ... ramses4)
- You can copy small numbers of files/folders directly with `scp`:
`scp local_file username@ramses1.itcc.uni-koeln.de:remote_destination_dir` ( . for home directory)
`scp local_file <USERNAME>@ramses1.itcc.uni-koeln.de:remote_destination_dir` ( . for home directory)
`scp -r local_folder username@ramses1.itcc.uni-koeln.de:remote_destination_dir`
`scp -r local_folder <USERNAME>@ramses1.itcc.uni-koeln.de:remote_destination_dir`
- For large amounts of (small) files use [tar](https://www.gnu.org/software/tar/manual/html_chapter/Tutorial.html#Tutorial) (or zip) to create an archive-file before copying:
- For large amounts of (small) files, use [tar](https://www.gnu.org/software/tar/manual/html_chapter/Tutorial.html#Tutorial) (or zip) to create an archive (single file) before copying:
```
- create: tar -czf name_of_archive.tar.gz files_or_folder_to_add
......
......