LVM Reference

/

There are already some LVM tutorials out there and I don’t want to write another one. Most of the time you just need a reference for the most common commands. create Physical Volume (PV) pvcreate /dev/sdb Volume Group (LV) vgcreate vg_data /dev/sdb Logical Volume (LV) lvcreate –L 10G –n lv_data01 vg_data mkfs.ext3 /dev/vg_data/lv_data01 mount /dev/vg_data/lv_data01 Read More