I'm connected to a ubuntu linux box using ssh -X 'username@institution'
I'm confused on how to copy a file from the remote linux box to my local PC, say the Documents folder. I'll be transferring from Ubuntu -> Windows.
I'm aware of the
sftp
command but I'm not sure how to use it to do this
Basic
sftp
tutorialUse the command:
This will take you to the
sftp
prompt like:Now type help like this:
This will show you all the commands you can use at this prompt. Use the
get
command to download a file from the Ubuntu to Windows:Finally use the
quit
command to return home:Here is a more detailed tutorial
Hope this helps