In this guide, we will cover how to create lvm partition step-by-step in Linux.
LVM stands for Logical Volume Management, it is the recommended way to manage disk or storage on Linux systems specially for servers. One of the main advantages of LVM partition is that we can extend its size online without any downtime. LVM partition can also be reduced but it is not recommended.
For the demo purpose, I have attached 15GB disk to my Ubuntu 22.04 system, we will create LVM partition on this disk from the command line.
##### Prerequisites
* Raw disk attached to Linux system
* Local User with Sudo rights
* Pre-Installed lvm2 package
Without further ado, let’s deep dive into the steps.
### Step 1) Identify new attached raw disk
Login to your system, open the terminal and run following dmesg command,
```
$ sudo dmesg | grep -i sd
```
In the output, look for new disk attached of size 15GB,
![dmesg-command-new-attached-disk-linux][1]
Alternate way to identify new attached raw disk is via fdisk command,
```
$ sudo fdisk -l | grep -i /dev/sd
```
Output,
![fdisk-command-output-new-disk][2]
From output above, it is confirmed that new attached disk is ‘/dev/sdb’
### Step 2) Create PV (Physical Volume)
Before start creating pv on disk /dev/sdb, make sure lvm2 package is installed. In case it is not installed, then run following command,
```
$ sudo apt install lvm2 // On Ubuntu / Debian
$ sudo dnf install lvm2 // on RHEL / CentOS
```
Run following pvcreate command to create pv on disk /dev/sdb,
```
$ sudo pvcreate /dev/sdb
Physical volume "/dev/sdb" successfully created.
$
```
To verify pv status run,
```
$ sudo pvs /dev/sdb
Or
$ sudo pvdisplay /dev/sdb
```
![pvdisplay-command-output-linux][3]
### Step 3) Create VG (Volume Group)
To create a volume group, we will use vgcreate command. Creating VG means adding pv to the volume group.
Syntax :
```
$ sudo vgcreare <vg_name><pv>
```
In our case, command would be,
```
$ sudo vgcreate volgrp01 /dev/sdb
Volume group "volgrp01" successfully created
$
```
Run following commands to verify the status of vg (volgrp01)
```
$ sudo vgs volgrp01
Or
$ sudo vgdisplay volgrp01
```
Output of above commands,
![vgs-command-output-linux][4]
Above output confirms that volume group (volgrp01) of size 15 GiB is created successful and size of one physical extend (PE) is 4 MB. PE size can be changed while creating vg.
### Step 4) Create LV (Logical Volume)
Lvcreate command is used to create LV from the VG. Syntax of lvcreate command would look like below,