Skip to main content Link Menu Expand (external link) Document Search Copy Copied

File Transfer

This section will show ways to transfer and interact with files in our cluster. Our cluster allows 3 ways below to transfer files.

  1. SCP Transfer file using SCP, scp [-Cr] source_path destination_path
      scp -C file.txt scads1@10.204.100.191:
      scp -Cr file_directory scads1@10.204.100.191:project1/
    
  2. Rsync
      rsync --progress -avz [source]  [destination]
    
      rsync --progress -avz file.tar.gz songpon@ist-compute.vistec.ac.th:data
      rsync --progress -avc projectA songpon@ist-compute.vistec.ac.th:my_research/projectA
    
  3. SSHFS Mounting remote directories over a secure shell connection

    Mounting, sshfs [user@]host:[dir] mountpoint [options]

     sshfs myuser@server:/remote/path /local/path
    

    Unmounting, fusermount3 -u mountpoint

     fusermount3 -u /local/path