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
31 Answer
Basic sftp tutorial
Use the command:
sftp username@institutionThis will take you to the sftp prompt like:
Connected to institution.
sftp> Now type help like this:
sftp> helpThis 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:
sftp> get mybigfile.txtFinally use the quit command to return home:
sftp> quitHere is a more detailed tutorial
Hope this helps
0