无法从 Linux Ubuntu 服务器 scp 到本地 Windows 机器

无法从 Linux Ubuntu 服务器 scp 到本地 Windows 机器

我想将文件从远程 Linux Ubuntu 服务器传输到本地 Windows 机器,但它给了我这个错误

ssh: Could not resolve hostname c: Temporary failure in name resolution

这是我在 Linux 服务器命令行中输入的命令

scp -r [email protected]:/var/www/test.py C:/Users/test/Desktop/

答案1

由于您的 Windows 计算机是本地计算机,无法通过互联网访问,因此您必须在 Windows 计算机上运行 scp 命令,而不是在远程主机上运行。如果您使用的是 wsl,则您的 C: 驱动器将在 /mnt/c 上可用,DOS 样式路径将不起作用。在这种情况下,使用 WinSCP 可能更容易。

相关内容