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?

feita há 2 anos240 visualizações
1 Resposta
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
ESPECIALISTA
respondido há 2 anos

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas