如何使用 SSH 从服务器下载文件?
我需要从服务器下载文件到我的桌面。 (UBUNTU 10.04) 我无法通过网络访问服务器,只能通过 ssh 访问。
如果有帮助的话,我的操作系统是 Mac OS X 和 iTerm 2 作为终端。
I need to download a file from server to my desktop. (UBUNTU 10.04) I don't have a web access to the server, just ssh.
If it helps, my OS is Mac OS X and iTerm 2 as a terminal.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在终端中,键入:
根据需要替换用户名、主机、远程文件名和本地目录。
如果您想访问 EC2(或需要使用私钥进行身份验证的其他服务),请使用
-i
选项:来自:http://www.hypexr.org/linux_scp_help.php
In your terminal, type:
replacing the username, host, remote filename, and local directory as appropriate.
If you want to access EC2 (or other service that requires authenticating with a private key), use the
-i
option:From: http://www.hypexr.org/linux_scp_help.php
您可以使用
scp
命令来执行此操作。scp
通过扩展cp
语法,使用 SSH 协议跨系统复制文件。将某些内容从另一个系统复制到此系统:
将某些内容从该系统复制到其他系统:
将某些内容从某个系统复制到其他系统:
You can do this with the
scp
command.scp
uses the SSH protocol to copy files across system by extending the syntax ofcp
.Copy something from another system to this system:
Copy something from this system to some other system:
Copy something from some system to some other system:
scp 当然是可行的方法,但为了完整起见,您也可以这样做:
或
注意,这是 UUOC,但是
< /path/on/local ssh 主机 'cat > /path'
可能会导致不必要的混乱。并在两个主机之间进行代理:
scp is certainly the way to go, but for completeness you can also do:
or
Note, this is UUOC, but
< /path/on/local ssh host 'cat > /path'
could cause unnecessary confusion.And to proxy between two hosts:
如果 SSH 服务器支持 SFTP 子系统(这是 SSH 的一部分,与 FTP 无关),请使用 sftp。如果没有,请尝试 scp。
CyberDuck 支持所有这些。
If the SSH server support SFTP subsystem (this is part of SSH, and unrelated to FTP), use sftp. If it don't, try scp.
CyberDuck support all of them.