Linux 阿里云服务器文件传输
时间: 2023-11-30 13:38:04 浏览: 163
阿里云Linux服务器配置及问题解决.docx
您可以使用 scp 命令在 Linux 阿里云服务器之间进行文件传输。具体操作如下:
1. 将本地文件上传到阿里云服务器:
```
scp /path/to/local/file username@remote:/path/to/remote/directory
```
其中,/path/to/local/file 是本地文件的路径,username 是远程服务器的用户名,remote 是远程服务器的 IP 地址或域名,/path/to/remote/directory 是远程服务器上的目标目录。
2. 将阿里云服务器上的文件下载到本地:
```
scp username@remote:/path/to/remote/file /path/to/local/directory
```
其中,/path/to/remote/file 是远程服务器上的文件路径,/path/to/local/directory 是本地目标目录。
阅读全文