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
| Here I am Sharing Some Useful #CheatSheets of DevOps and Cloud that can ease daily relatively tasks. | |
| if you find some more can add in comment section | |
| - Linux command cheat sheet: https://lnkd.in/eemfYJU | |
| - Git and GitHub cheat sheet: https://lnkd.in/eqmYz7Y | |
| - Docker cheat sheet: https://lnkd.in/euVgEym |
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 |