Reputation: 409
I transfer files from local machine (windows 7) to remote server (linux) the command line scp , but every time i have to write the password .
Is there a way to configure my machine ( windows) and remote server to accept my transfers without typing password every time. but only for this machine?
Thank you so much
Upvotes: 0
Views: 1670
Reputation: 25926
Use ssh
keys. There is a lot of tutorials how to set them up. In short:
$ ssh-keygen
Upvotes: 1