Simple LVM Linux How-to
1. fdisk harddisk i.e.
# fdisk /dev/sdb
create at least 1 partition and gave label 8e (Linux LVM)
2. Create Physical Volume
# pvcreate /dev/sdb1
3. Create / Adding Volume Group
# vgcreate VolGroup01 /dev/sdb1
4. Activating new / deactivated Volume Group
# vgchange -a y VolGroup01
5. View Volume Group information
# vgdisplay
[ more.. ]
