Update Documentation authored by Peter Heger's avatar Peter Heger
......@@ -216,13 +216,12 @@ Please note: You can transfer data ONLY to the login nodes (ramses1 ... ramses4)
- 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
- extract: tar -xvzf example.tar.gz
- show contents: tar -tf <file>
```
- you can also use [rsync](https://tldr.inbrowser.app/pages/common/rsync)
- if you prefer interactive transfer with a shiny GUI, you might want to try out [FileZilla (Linux/Mac/Win)](https://filezilla-project.org/), [WinSCP (Win only)](https://winscp.net/eng/download.php), or [Cyberduck (Mac/Win)](https://cyberduck.io/download/).
- create archive: `tar -czf name_of_archive.tar.gz files_or_folder_to_add`
- extract archive: `tar -xvzf example.tar.gz`
- show contents of archive: `tar -tf <file>`
- You can also use [rsync](https://tldr.inbrowser.app/pages/common/rsync)
- If you prefer interactive transfer with a shiny GUI, you might want to try out [FileZilla (Linux/Mac/Win)](https://filezilla-project.org/), [WinSCP (Win only)](https://winscp.net/eng/download.php), or [Cyberduck (Mac/Win)](https://cyberduck.io/download/).
## 4. Filesystem
......
......