Disk Expansion on Linux
Very Important
This is a risky operation and is not recommended unless the server has a backup.
After a new disk is added to the Linux system, it is explained step by step how to configure this disk using LVM (Logical Volume Manager).
Checking the disks:
BASH

As you can see in the image, the added disk appears as /dev/sdb. The example commands will also proceed on /dev/sdb.
Creating a Partition on a New Disk:
BASH
Follow the steps below in the fdisk interface:
- Add New Partition: Press n and create a new partition.
- Select Type: Press p to create a primary partition.
- Enter Partition Number: Specify the partition number by typing 1.
- Use Default Settings: Press Enter to accept all default settings.
- Use Default Settings: Press Enter to accept all default settings.
- Write and Exit: Press w to save the changes.
Creating Physical Volume:
BASH
Listing Volume Groups:
BASH

Include New Disk in Existing Volume Group:
You can use the following command to add /dev/sdb1 disk to the volume group on your system.
BASH
List Logic Volumes:
BASH

Expanding Logic Volume:
You can run the following command to extend logic volume named ubuntu-lv with 100% free space in volume group named ubuntu-vg:
BASH
Expand the file system:
BASH