Created
June 2, 2020 21:48
-
-
Save AshokBungatavula/9db3e26db137d8f667f5930620738773 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-get clean # to get some space | |
| apt install cloud-guest-utils # tool to mount blocks | |
| lsblk # to list all blocks | |
| growpart /dev/xvda 1 # to extend size of specific block(here xvda 1) | |
| resize2fs /dev/xvda1 # mount block | |
| df -h # check file system |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment