Ssh – How to upload local file to server through Linux terminal
I am trying to upload local files to server by using Putty or SSH but not getting upload there. Is there any direct method to upload file from local to server from Linux terminal without using FTP etc ? Solution: Sure. Use scp (secure copy) like this: scp [source file] [username]@[destination server]:. Of course replace…