无法使用 PSCP 将 SSH 密钥从 Win10 复制到 Ubuntu 服务器

无法使用 PSCP 将 SSH 密钥从 Win10 复制到 Ubuntu 服务器

我正在尝试将 .pub 密钥复制到位于同一路由器上的服务器。我一直收到“没有此文件或目录”的错误,我无法理解为什么,因为文件显然在那里。

PS C:\Users\black> ls ~/.ssh/homeUbuntu

    Répertoire : C:\Users\black\.ssh\homeUbuntu

Mode                LastWriteTime         Length Name
----                -------------         ------ ----
-a----       22/05/2020     20:35           3326 id_rsa
-a----       22/05/2020     20:35            737 id_rsa.pub

PS C:\Users\black\.ssh\homeUbuntu> pscp -P 19198 ~/.ssh/homeUbuntu/id_rsa.pub [email protected]:/home/black/.ssh/bws_key.pub
~/.ssh/homeUbuntu/id_rsa.pub: No such file or directory

答案1

好的,事实证明您必须使用 C:/Users/black/.ssh/homeUbuntu/id_rsa.pub 才能使其在 Windows 上正常工作。

相关内容