First question. Can I use pscp over a serial communications link from PC to pi?
Here is what I'm doing. I have a UART serial link using a USB to TTL Serial Cable from Adafruit. I use PuTTY on my PC and establish a connection with my pi zero (running Raspbian Stretch). I get the proper prompt in the PuTTY console.
Code: Select all
pi@myhostname:~$I test the connection with various commands and it works fine. I open the Command Prompt console on my PC running Windows 10. At the prompt, I try type pscp and get the Release 0.70, Usage and Options. I type the following.
Code: Select all
c:\Users\myusername>pscp -ls pi@myhostname:.
ssh_init: Host does not existCode: Select all
ssh-keygen -t rsa
Generating public/private rsa key pair.
<goes on to successfully create a key>Second question. If the answer to the first question is yes, am I missing something when I use the hostname pi@myhostname: inserting my actual hostname in place of myhostname, of course.
All of the examples I find in articles, posts and websites seem to use ".com" examples.