Page 1 of 1

file transfer via ssh

Posted: Sun Nov 10, 2019 2:07 am
by mesand
Hi,

How would I transfer files from my pi to my computer via SSH?

Re: file transfer via ssh

Posted: Sun Nov 10, 2019 2:13 am
by HawaiianPi
Look up SCP. In simple terms, it's a copy command using SSH protocol.

Code: Select all

scp --help
man scp
If you want to transfer between a Windows PC and Pi, check out WinSCP.

Re: file transfer via ssh

Posted: Sun Nov 10, 2019 9:07 am
by thagrol
Or

Code: Select all

sftp
man sftp

Re: file transfer via ssh

Posted: Wed Nov 13, 2019 1:39 pm
by tpyo kingg
Or in the file manager on another machine press ctrl-l and then enter sftp://pi@192.168.1.100/ or whatever the IP address of the Pi is.