Posted under » Linux on 24 November 2014
In windows you can use WinSCP. You can use Filezilla in Linux / Ubuntu. You can also do it using SCP command line.
If you are want to upload
$ scp /home/you/Downloads/heh.mp3 me@172.50.157.104:/media/me/
If you are want to download but with a key
$ scp you -i /home/tlc-bastion.pem z@myserver.com.sg:/sync/youmama.avi /home/you/Downloads/
If you are want to download a directory use the recursive command
$ scp -r youz@myserver.com.sg:/sync/youmama /home/you/Downloads/
You will be prompted for password but thats all to it.