AWS

Using s3cmd Reference Create a bucket aws s3 mb Copy file to bucket aws s3 cp "C:\users\my first backup.bak" Download file from bucket aws s3 cp ./ Delete file in bucket aws s3 rm Links Configuring …

Using s3cmd

Reference

Create a bucket

aws s3 mb <s3://my-first-backup-bucket>

Copy file to bucket

aws s3 cp "C:\users\my first backup.bak" <s3://my-first-backup-bucket/>

Download file from bucket

aws s3 cp <s3://my-first-backup-bucket/my-first-backup.bak> ./

Delete file in bucket

aws s3 rm <s3://my-first-backup-bucket/my-first-backup.bak>

Links

Configuring s3cmd to work with DigitalOcean Spaces
Using s3cmd with DigitalOcean Spaces

Comments