Copying files to AWS s3 from Ubuntu

From Cramsession
Revision as of 21:55, 17 May 2026 by Mflavell (talk | contribs) (Created page with "Tech Notes > AWS > Copying files to AWS s3 from Ubuntu = First, AWS tools = Make sure you have AWS tools installed before doing this. = Generare an key = = Copy Commands = == Copy a single file == aws s3 cp display_server.ova s3://'''s3-bucket-name'''/'''path''' == Recursive copy of an extension == aws s3 cp . s3:/'''s3-bucket-name'''/ --recursive --exclude "*" --include "*.ova"")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
✍️ Verified Author: MflavellClick to view professional profile & credentials

Tech Notes > AWS > Copying files to AWS s3 from Ubuntu


First, AWS tools

Make sure you have AWS tools installed before doing this.


Generare an key

Copy Commands

Copy a single file

aws s3 cp display_server.ova s3://s3-bucket-name/path

Recursive copy of an extension

aws s3 cp . s3:/s3-bucket-name/ --recursive --exclude "*" --include "*.ova"