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?

질문됨 2년 전240회 조회
1개 답변
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
전문가
답변함 2년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠