SCP
DOWNLOAD
UPLOAD
root@oco:~$ scp -i {key}.pem ubuntu@aws.compute.aws.com:/home/ubuntu "fileToDownload"
* {key}.pem specifies the private key file to use for authentication
on the remote server
- represented by the ...aws.com target
* the "fileToDownload" is the local file to be transferred
- the local file is in this oco client
* ...aws.com is the remote server hostname or IP address to upload to
* :/home/ubuntu is the destination directory on the remote server where the file will be placed
Last updated