Thank you very much! Your advice worked and was really useful to me! I appreciate it a lo!
Heys,
I'm working with two ssh clusters and I want to transfer some data from one to another. I could download it to my pc and then to the other cluster, but is more than 100 GB and I imagined there would be an easy way to transfer the data between both clusters.
I've been trying to look for info in internet, but I didn't fully got it. If anybody could help me would be great!
Thanks in advance!
2 answers
Anything wrong with just rsync it from A to B directly?
Something like this, assuming only the files to be transferred were in the current directory on the source cluster:
rsync --progress ./* username@servername:/path/to/destination
Did you checked this: https://unix.stackexchange.com/questions/106480/how-to-copy-files-from-one-machine-to-another-using-ssh
thanks for your answer too! I used ATpoint's advice but this post explains something similar, thanks!
Log in to answer this question.