Partitioning,Formatting,Mounting & Unmounting Disks by kk || Vansro Technologies ||

 
Part-1 (Cloud Engineers)
-----------------------------
step1: login AWS Account
step2: create Linux server
step3: create 4GB Volume
step4: attach 4GB Volume to the Linux Server

Part-2 (L2 OR L3 Linux Support Engineers)
------------------------------------------------------
based on your organization standards you get this task
step5: login Linux server

step6: do partitions 
       fdisk /dev/xvdb and press enter
       disk partition no1: /dev/xvdb1
       disk partition no2: /dev/xvdb2

step7: do format the disk partition (attach file system to the disk)
       mkfs -t xfs /dev/xvdb1
       mkfs -t xfs /dev/xvdb2

step8: create directory or folder (also called as mount points or folders)
       mkdir /payments
       mkdir /deposits

step9: do mounting (attach folder to the disk)
       mount /dev/xvdb1 /payments
       mount /dev/xvbd2 /deposits

step10:store the data inside payments folder
       store the data inside deposits folder
       just for your understanding purpose only

step11:unmount  (remove mount point from the disk partition is also called as unmount )
       it is not a mount point deletion activity
       just removing this folder from the disk

      umount <folder name>
      umount /payments
     
    Result: /payments folder will be removed from the disk partition wherever it has attached..
   
    
Watch full video:  https://www.youtube.com/watch?v=G51-e85DUpc

Comments

Popular posts from this blog

Top 10 Git Commands

Kubernetes cluster setup NOTES step by step using minikube

SonarQube Installation & Configuration Step by step