Skip to content

Using SCP with Savio

Aron Roberts edited this page Aug 6, 2015 · 4 revisions

A couple of examples using the 'scp' command in a shell/terminal window, if you're using a Unix/Linux/Macintosh system (or a Windows system with equivalent scp software):

To transfer a single file from your computer to your home directory on Savio (substitute your actual username on Savio for myusername in the two places it appears below):

scp myfile.txt [email protected]:/global/home/users/myusername

To transfer a folder and its contents from your computer to your home directory on Savio (substitute your actual username on Savio for myusername in the two places it appears below):

scp -r myfolder [email protected]:/global/home/users/myusername

And to transfer that same folder to the shared Scratch filesystem on Savio (substitute your actual username on Savio for myusername in the two places it appears below):

scp -r myfolder [email protected]:/global/scratch/myusername

Clone this wiki locally