Load large files to Amazon S3 [closed]
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this questionI am using a linux machine and I would like to upload 12GB file to s3.
While using the web console I got the message that the browser support only files smaller than 1.9 GB.
What are the options for loading such a big file?
The Bucket Explorer should support big files (taken from here: http://aws.typepad.com/aws/2010/11/amazon-s3-multipart-upload.html)
Try s3md - http://s3tools.org/s3cmd
If you're on Ubuntu or other linux,
$ sudo apt-get install s3cmd
$ s3cmd --configure
....
$ s3cmd put myfile s3://mybucket
精彩评论