Extend Volume Size on AWS EC2

If we wanna extend the storage space of the computer, we need to shut the machine down then you are able to add another storage device for it. Advantages of using Elastic Block Store(EBS) are reboot the instance is not needed. the space can be extended instead of adding a new device. Increase EBS volume size on EC2 is easy: Modify the volume on AWS Console Extend the partition by growpart Extend the file system by resize2fs(ext4) or xfs_growfs(xfs) Step 1: Modify the volume on AWS Console Login to AWS Console and select a volume via the Volume ID then click the Modify button on the top right corner....

August 11, 2023 · 3 min · oopsmonk

AWS S3 Download Bucket Folder

Currently, AWS web console not provide folder downloading. We can use s3cmd or s3Browser for this purpose. s3Browser is a freeware Windows client for S3 and CloudFront. s3cmd download Bucket folder: s3cmd sync s3://bucketname/folder /local/folder For download files using s3Browser, here is a tutorial. Uploading and Downloading Files to and from Amazon S3

May 28, 2013 · 1 min · oopsmonk