如何在 Windows 中使用 Putty 从远程服务器复制文件?

发布于 2024-11-11 18:32:38 字数 1550 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你怎么这么可爱啊 2024-11-18 18:32:38

它使用 PSCP 工作。
说明:

  1. 从 Putty 下载页面下载 PSCP.EXE
  2. 打开命令提示并键入 set PATH=
  3. 在命令提示符下,使用 cd 命令指向 pscp.exe 的位置,
  4. 键入 pscp
  5. 使用以下命令将文件从远程服务器复制到本地系统

    pscp [选项] [用户@]主机:源目标
    

因此从服务器example.com/etc/hosts > 以用户 fred 的身份访问该文件
c:\temp\example-hosts.txt,您可以输入:

pscp [email protected]:/etc/hosts c:\temp\example-hosts.txt

It worked using PSCP.
Instructions:

  1. Download PSCP.EXE from Putty download page
  2. Open command prompt and type set PATH=<path to the pscp.exe file>
  3. In command prompt point to the location of the pscp.exe using cd command
  4. Type pscp
  5. use the following command to copy file form remote server to the local system

    pscp [options] [user@]host:source target
    

So to copy the file /etc/hosts from the server example.com as user fred to the file
c:\temp\example-hosts.txt, you would type:

pscp [email protected]:/etc/hosts c:\temp\example-hosts.txt
栩栩如生 2024-11-18 18:32:38

putty 工具之一是 pscp.exe;它将允许您从远程主机复制文件。

One of the putty tools is pscp.exe; it will allow you to copy files from your remote host.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文