Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 801 Bytes

copy-file-between-computers.md

File metadata and controls

26 lines (16 loc) · 801 Bytes

Downloading and uploading file between local computer and AWS instance

Let's go!

  1. You can use free FTP service such as FileZilla or Bitvise SSH client to download your file from and upload your file to the running AWS instance.
  1. You can use a simple scp command to this, for example, copying file on local system to AWS instance:
scp -i /path/to/key/pair file/to/copy [email protected]:/path/to/file

For copying folder, just use flag -r, like this:

scp -r -i /path/to/key/pair folder/to/copy [email protected]:/path/to/file

Note that a key pair file (.pem) is needed!

Contact

Rangsiman Ketkaew - [email protected]