How to copy a local file while logged into a SSH session within Linux (ubuntu)

ssh

how can i transfer a local file to a logged in ssh session without using scp? im doint this in the terminal under ubuntu, but this goes for any linux system.

** say im logged into a server via the terminal in ubuntu and now i want to copy one of my files on my desktop over to that logged in session?

Best Answer

scp or mount via sshfs are the options that come to mind.

You may wish to look at https://unix.stackexchange.com/questions/2857/ssh-easily-copy-file-to-local-system

Related Question