我需要将文件从服务器下载到我的桌面。(UBUNTU 10.04) 我没有对服务器的网络访问,只有 ssh。
如果有帮助,我的操作系统是 Mac OS X 和 iTerm 2 作为终端。
在您的终端中,键入:
scp your_username@remotehost.edu:foobar.txt /local/dir
根据需要替换用户名、主机、远程文件名和本地目录。
如果您想访问 EC2(或其他需要使用私钥进行身份验证的服务),请使用以下-i选项:
-i
scp -i key_file.pem your_username@remotehost.edu:/remote/dir/foobar.txt /local/dir
来自:http ://www.hypexr.org/linux_scp_help.php