I am trying to move a file from my local Windows machine to a remote Linux server using PSCP. I am connected to the VPN so that I can access my remote Linux machine with my username and password.
My PSCP command for transfer is:
pscp C:\Users\username\Desktop\list.txt PEM\username@10.120.43.78:/home/local/PEM/username
This result in the error
Local to local copy not supported
I have tried this command just for a trial
pscp C:\Users\username\Desktop\list.txt username@10.120.43.78:/home/local/PEM/username
The above command resulted in asking me the password. However, when I type in the password, the access is denied. This is because my remote Linux machine username is PEM/username
and not username
. However if I use PEM/username
the "Local to local copy not supported" error message is coming. Does it have something to do with the slash \
in the username PEM\username
?