Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. You need to upload or download data FROM/TO your local machine TO/FROM a CINECA HPC cluster
    $ scp /absolute/path/from/file <username>@data.<cluster_name>.cineca.it:/absolute/path/to/
    $ scp  <username>@data.<cluster_name>.cineca.it:/absolute/path/from/file /absolute/path/to/


  2. You need to transfer files between 2 CINECA HPC clusters
    $ ssh -xt <username>data<username>@data.<cluster_name_1>.cineca.it scp /absolute/path/from/file <username>@data.<cluster_name_2>.cineca.it:/absolute/path/to/
    $ ssh -xt <username>data<username>@data.<cluster_name_1>.cineca.it scp <username>@data.<cluster_name_2>.cineca.it:/absolute/path/from/file  /absolute/path/to/
  3. You need to transfer files between 2 CINECA HPC clusters using your local machine as a bridge. We strongly suggest not using this option because it has very low transfer performance, each file you move from one cluster to another will pass through your local machine
    $ scp -3  <username>data <username>@data.<clusterr_name_1>.cineca.it:/absolute/path/from/file  data.<cluster_name_2>.cineca.it:/absolute/path/from/file

...