I'm new to working with a remote server. I am trying to get a file to be copied from my local machine (Windows 10) to a Ubuntu server. I'm using ssh with PuTTY.
What I try to do is this:
scp D:\USER\Desktop\test.txt username@server:home
I get :
ssh: Could not resolve hostname d: Name or service not known
So I tried a couple of other things such as:
scp Desktop/test.txt username@server:home
Which returns:
Desktop/test.txt: No such file or directory
Of course, there is an existing text file test.txt in my desktop.
I have the feeling I can't work out how to format the Windows path...