本地文件上传到服务器、服务器上文件下载到本地:scp/scp -p 端口

密码登录:

本地文件上传到服务器:

scp -P 端口号 /path/to/file/*** ubuntu@服务器地址:/path/to/file/***

服务器上文件下载到本地:

scp -P 端口号 ubuntu@服务器地址:/path/to/file/*** /path/to/file/***

 

密钥登录:

本地上传到服务器:

scp -i /path/to/key.pem -P 端口号 /path/to/local/file ubuntu@服务器地址:/path/to/remote/destination

服务器上文件下载到本地:

scp -i /path/to/key.pem -P 端口号 ubuntu@服务器地址:/path/to/remote/file /path/to/local/destination

 

主要就是以上的两种方法。

posted @ 2023-10-18 13:59  バカなの  阅读(22)  评论(0编辑  收藏  举报