|
|
once upon a time we randomly needed to add two new separate lvm logical volumes to a server
verify which devices we will work with
sudo disk -l
We need to create physical volumes on both of these buggers:
create a physical volume on the 20G and 400G LUNs
sudo lvm pvcreate /dev/sdb
sudo lvm pvcreate /dev/sdc
create a volume group on the 20G and 400G physical volumes
sudo lvm vgcreate vg1 /dev/sdb
sudo lvm vgcreate vg2 /dev/sdc
create a logical volume on the new volume groups
sudo lvm lvcreate vg1 -l 100%VG --name app
sudo lvm lvcreate vg2 -l 100%VG --name data
format each logical volume with ext4 filesystem
sudo mkfs --type=ext4 /dev/mapper/vg1-app
sudo mkfs --type=ext4 /dev/mapper/vg2-data
create mount points
sudo mkdir /app
sudo mkdir /data
configure mount points in /etc/fstab
/dev/mapper/vg1-app /app ext4 errors=remount-ro 0 1
/dev/mapper/vg2-data /data ext4 errors=remount-ro 0 1
verify fstab
sudo mount -a
verify new filesystems
df -hal
Source: https://foxhop.net/f3d70a5f-2f95-11f1-8b49-e86a64d24d78/lvm-story
Snapshot: 2026-05-25T01:47:59Z
Generator: Remarkbox 1527ef7