install agent in my locaL PC

0

i need to install agent in my pc win 10 64bit 8gb 500ssd for backup to aws s3 can i do?

asked 2 years ago228 views
1 Answer
1

One option is to use the AWS CLI and the S3 sync command to automatically copy files to S3. The nice thing about the sync command is that it will compute a delta since last run, meaning that any new files or updated files will be picked up instead of re-uploading every single file.

For example, if I wanted to automatically backup all of my photos from my local machine, I would run the following command:

aws s3 sync $HOME/Pictures/ s3://mybucket/Pictures/ --include "*.jpg"

The above command will "sync" my local Pictures directory into provided S3 bucket URI, and will include any files under that directory that have the .jpg filename suffix.

Then if you wanted to automate the process, you could execute the above command as a scheduled task.

profile pictureAWS
EXPERT
answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions