Glam Prestige Journal

Bright entertainment trends with youth appeal.

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

3

1 Answer

Basic sftp tutorial

Use the command:

sftp username@institution

This will take you to the sftp prompt like:

Connected to institution.
sftp> 

Now type help like this:

sftp> help

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:

sftp> get mybigfile.txt

Finally use the quit command to return home:

sftp> quit

Here is a more detailed tutorial

Hope this helps

0

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy