Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
hpc-compendium
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ZIH
hpcsupport
hpc-compendium
Commits
1a295959
Commit
1a295959
authored
3 years ago
by
Jan Frenzel
Browse files
Options
Downloads
Patches
Plain Diff
Added examples for scp commands in export_nodes.md.
parent
dc0e9c8c
No related branches found
No related tags found
2 merge requests
!416
Automated merge from preview to main
,
!414
Resolve "mention storage place on https://doc.zih.tu-dresden.de/data_transfer/overview/"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc.zih.tu-dresden.de/docs/data_transfer/export_nodes.md
+15
-1
15 additions, 1 deletion
doc.zih.tu-dresden.de/docs/data_transfer/export_nodes.md
with
15 additions
and
1 deletion
doc.zih.tu-dresden.de/docs/data_transfer/export_nodes.md
+
15
−
1
View file @
1a295959
...
...
@@ -33,15 +33,29 @@ in a directory, the option `-r` has to be specified.
marie@local$ scp -r <directory> taurusexport:<target-location>
```
??? example "Example: Copy a file from ZIH systems to your workstation"
For example, if you want to copy your data file `mydata.csv` to the directory `input` in your
home directory, you would use the following:
```console
marie@local$ scp mydata.csv taurusexport:input/
```
??? example "Example: Copy a file from ZIH systems to your workstation"
```bash
marie@local$ scp taurusexport:<file> <target-location>
# Add -r to copy whole directory
marie@local$ scp -r taurusexport:<directory> <target-location>
```
For example, if you have a directory named `output` in your home directory on ZIH systems and
you want to copy it to the directory `/tmp` on your workstation, you would use the following:
```console
marie@local$ scp -r taurusexport:output/ /tmp
```
### SFTP
The tool
[
`sftp`
](
https://man7.org/linux/man-pages/man1/sftp.1.html
)
(
OpenSSH
secure file transfer)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment