-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:csc-training/geocomputing_course
- Loading branch information
Showing
18 changed files
with
207 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
# Moving data | ||
|
||
## Local computer <-> supercomputer | ||
|
||
* [CSC Docs: Moving files between a local computer and a supercomputer](https://docs.csc.fi/data/moving/) | ||
|
||
### Puhti Web Interface | ||
|
||
- Very easy, no installations needed. | ||
- Graphical, no installations needed. | ||
- Limited functionality compared to other options. | ||
- For smaller amounts of data, < 10 Gb. | ||
- Upload, download, moving, creating folders. | ||
- [Puhti Web Interface](https://puhti.csc.fi) -> Files | ||
|
@@ -16,14 +14,15 @@ | |
|
||
- For example: **FileZilla**, **WinSCP** and **CyberDuck** | ||
- For medium amounts of data, < 1 Tb. | ||
- Very easy, but installation required. | ||
- Easy drag-and-drop for moving, but installation required. | ||
- WinSCP is slower than others. | ||
- [CSC Docs: Graphical data transfer tools](https://docs.csc.fi/data/moving/graphical_transfer/) | ||
|
||
!["FileZilla"](./images/filezilla.jpg "FileZilla") | ||
|
||
### Command line tools on local computer | ||
- For any amount of data, practically required if data size > 1 Tb. | ||
- Requires knowing the commands. | ||
|
||
#### scp | ||
|
||
|
@@ -55,7 +54,7 @@ rsync --info=progress2 -a /path/to/a_file [email protected]:/scratch/proj | |
# One folder: | ||
rsync --info=progress2 -a /path/to/directory [email protected]:/scratch/project_200xxxx/directory | ||
``` | ||
* `progress2` shows time left and percentage | ||
* `--info=progress2` shows time left and percentage | ||
|
||
|
||
:::{admonition} Firewall limitations | ||
|
@@ -70,8 +69,9 @@ Some organizations, for example research institutes with IT-services from Valtor | |
|
||
- When downloading from exernal services try to download directly to CSC, not via your local computer | ||
- Check what APIs/tools the service supports: | ||
- OGC APIs, [STAC](https://csc-training.github.io/geocomputing_course/materials/stac.html) | ||
- ftp, rsync | ||
- Standard APIs: OGC APIs, [STAC](https://csc-training.github.io/geocomputing_course/materials/stac.html) | ||
- Custom service APIs | ||
- ftp, rsync | ||
- wget/curl if HTTP-urls avaialable | ||
|
||
### wget | ||
|
@@ -86,6 +86,12 @@ wget http://wwwd3.ymparisto.fi/d3/gis_data/spesific/syvyyskayra.zip | |
wget -r -nc ftp://ftp.aineistot.metsaan.fi/Metsamaski/Maakunta/ --cut-dirs=2 | ||
``` | ||
|
||
:::{admonition} More options :class: note | ||
|
||
* [CSC Docs: Moving files between a local computer and a supercomputer](https://docs.csc.fi/data/moving/) | ||
|
||
::: | ||
|
||
|
||
|
||
:::{admonition} Possible trouble with file transfer between Windows and Linux | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.