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.
- 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/
- 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
-
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