Skip to content

Instantly share code, notes, and snippets.

@NguyenTrungTin
Last active September 19, 2019 03:29
Show Gist options
  • Save NguyenTrungTin/a392613fb69e90059926169f08b0b5f2 to your computer and use it in GitHub Desktop.
Save NguyenTrungTin/a392613fb69e90059926169f08b0b5f2 to your computer and use it in GitHub Desktop.
AWS - Extend AWS EBS volumes with no downtime
  1. Modify volume on AWS

  2. Type the following command to list our block devices:

lsblk
  1. Type the following command:
sudo growpart /dev/xvda 1
  1. Confirm
lsblk
  1. Resize
sudo resize2fs /dev/xvda1
  1. Done
df -h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment