Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
开发者_开发技巧 Improve this questionCan someone help me with commands? I'm trying to upload file to server based on linux.
You need an scp client. Putty is not one. You can use WinSCP or PSCP. Both are free software.
"C:\Program Files\PuTTY\pscp.exe" -scp file.py server.com:
file.py
will be uploaded into your HOME
dir on remote server.
or when the remote server has a different user, use "C:\Program Files\PuTTY\pscp.exe" -l username -scp file.py server.com:
After connecting to the server pscp will ask for a password.
Use WinSCP for file transfer over SSH, putty is only for SSH commands.
精彩评论