Logical Volume Manager(LVM)
Logical Volume Manager(LVM)- L.V.M(Logical Volume Manager) LVM is a method of allocating harddrive space into logical volumes that can be easily resized instead of partitions. With LVM the harddrive (or) set of harddrives are allocated to one or more physical volumes. The physical volumes are combined into volume groups Each volume group is divided into logical volumes which are assigned mountpoints such as /home and filesystem types such as ext3 To configure LVM -Create three LVM partitions -Convert them as physical volumes -Create volume groups from physical volumes -Create logical volumes from volume groups and assign mountpoints Implemention: fdisk -l #fdisk /dev/sda :n +500M :t <partition number> :8e (Linux LVM) :w (save & exit) #partx -a /dev/sda (update kernel) To convert LVM partitions as physical volumes #pvcreate /dev/sda<partition numbers> ex: pvcreate /dev/sda{9,10,11} To view physical...