physical volumes:
o These are your physical disks, or disk partitions, such as /dev/hda or /dev/hdb1. These are what you’d be used to using when mounting/unmounting things. Using LVM we can combine multiple physical volumes into volume groups.
volume groups:
o A volume group is comprised of real physical volumes, and is the storage used to create logical volumes which you can create/resize/remove and use. You can consider a volume group as a “virtual partition” which is comprised of an arbitary number of physical volumes.
logical volumes:
o These are the volumes that you’ll ultimately end up mounting upon your system. They can be added, removed, and resized on the fly. Since these are contained in the volume groups they can be bigger than any single physical volume you might have. (ie. 4x5Gb drives can be combined into one 20Gb volume group, and you can then create two 10Gb logical volumes.)
1
| aptitude update && aptitude install lvm2 |
Once we’ve initialised the partitions, or drives, we will create a volume group which is built up of them:
1
| vgcreate storm /dev/md0 |
If you’ve done this correctly you’ll be able to see it included in the output of:
Create your first logical volume:
1
| lvcreate -n data --size 300g storm |
Your new logical volume will be accessible via:
1
2
3
| /dev/storm/data
# or
/dev/mapper/storm-data |
Create file system:
1
| mkfs.ext3 /dev/storm/data |
Show created volumes and their sizes:
Extend volume:
1
| lvextend -L+10g /dev/storm/data |
After resizing you should resize the filesystem:
1
2
| e2fsck -f /dev/storm/data
resize2fs /dev/storm/data |
Remove volume:
1
| lvremove /dev/storm/data |
If you need some visual help you can use: “system-config-lvm” utility co configure LVM.