Skip to main content

AWS : EBS Operation: Volume Resizing

 https://www.udemy.com/course/ultimate-aws-certified-sysops-administrator-associate/learn/lecture/27513472#notes

Extend a Linux file system after resizing a volume : Click Here























lsblk
   64  df -h
   65  lsblk
   66  df -h
   67  clear
   68  lsblk
   69  df -h
   70  sudo growpart /dev/xvda1 1
   71  sudo growpart /dev/xvda 1
   72  lsblk
   73  df -h
   74  lsblk
   75  df -t
   76  df -h
last  step : reboot instance from console, it will get reflect. 

Comments

Popular posts from this blog

Connecting to AWS - AWS Toolkit for VS Code

if this is your first time using the AWS Toolkit for Visual Studio Code,  Add Connection to AWS  User Interface (connection UI) automatically opens in VS Code. To access the connection UI at any time, open the command pallet by pressing  ( Ctrl+Shift+P  Windows), enter  AWS: Add a New Connection  into the search field, then select  AWS: Add a New Connection . Video Link :  https://www.youtube.com/watch?v=hYtYaFVWcCU  

End To End CI CD Pipeline Project | CI CD Pipeline

----->>>> This is  Start of CI pipeline ------->>>> pipeline {     agent any         tools {             jdk 'jdk 11'             maven 'maven3'         }         environment {             SCANNER_HOME= tool 'sonar-scanner'         }     stages {         stage ('Git checkout') {             steps {                 git branch: 'main', changelog: false, poll: false, url: 'https://github.com/jaiswaladi246/Webshop-app.git'         ...