Posts

Showing posts from April, 2023

Adding new disk Parttion And Extending the same Disk Parttion with the exiting mount point

Image
  Adding And Extending   the Disc with the exiting mount point Let’s see how to Extend the newly added HDD with the Existing mount point Step 1: List the HDD added to the server:                 # lsblk    Red marked ( newly added HDD and we are going to extend   this disk into exiting mount point /home/study       Yellow marked ( existing mount point /home/study) Step 2: start doing the Partition on added HD             # fdisk /dev/sdc Navigate the format disk toward to newly added HDD. click on the below link to get the step-by-step config details for the above disk partition.   https://cloudtinesh.blogspot.com/2023/01/how-to-partition-and-mount-file-system.html Step 3: List the created physical volume. # pvdisplay Step 4: Creating Physical volume # pvcreate /dev/sdc1     Step 5: E...