LVM
###Logical Volume Management (LVM)### Features: 1. Ability to create volume sets and stripe sets 2. LVM masks the underlying physical technology (ATA,ATAPI,IDE,SCSI,SATA,PATA,etc.) 3. LVM represents storage using a hierarchy: a. Volume groups a1. Physical volumes (/dev/sda2, /dev/sdb2, etc.) b. Logical Volumes b1. File systems 3. LVM physical volumes can be of various sizes 4. Ability to resize volumes on the fly Note: Volume groups join: physical volumes (PVs) and Logical Volumes (LVs) Steps to setup LVM: 1. Create LVM partitions via fdisk or parted a. fdisk /dev/sda, /dev/sdb, /dev/sdc b. n c. p d. +10G e. t - change to type '8e' (LVM) f. w g. partprobe /dev/sda 2. Create Physical Volumes using 'pvcreate' ...