Sistina Logical Volume Manager (LVM)

Advantage

Increase/decrease logical volumes (partitions) without worrying about the neiboring partitions

References

Sistina Logical Volume Manager (LVM)
Logical Volumes on Dell PowerEdge
How To on LVM

Sample Scenarios

Create 1TB partition /data

    pvscan
    lvscan
    lvcreate  -L1048675 -nLogVolData VolGroup_ID_724 /dev/sda5
    (reserve 1% for super user, default 5% is too big for this, still use default 4kb per inode):
    mke2fs -j -m 1 /dev/VolGroup_ID_724/LogVolData
    lvremove /dev/VolGroup_ID_724/LogVolData
mkdir /data
mount /dev/VolGroup_ID_724/LogVolData /data
   /dev/VolGroup_ID_724/LogVolData /data                auto    defaults        0 0

Extend /var partition on the fly (LVM2 and ext3 file system)

     vgdisplay
     lvextend -L+2G /dev/VolGroup_ID_724/LogVol7
     ext2online /dev/VolGroup_ID_724/LogVol7