systemnotes org Location: System Notes / Linux / Rhce-flash-cards / Create a Logical Volume

Help for Aspiring Sysadmins

Linux / Open Source / Howto / Tips & Tricks

Language: en
 






Latest News

2009.07.29
RHCE Flash Cards Released

2008.01.11
Website Design Updated. This is a work in progress...

2008.01.11
RHCE Study Guide Removed due to a potential copyright issue

2007.12.03
RHCE Study Guide Released

 

Links:



Do you find this site useful?

donate









Spread Firefox Affiliate Button

Documents


First page Back Continue Last page Overview Graphics

Create a Logical Volume

  • First create physical volume, then volume group, then logical volume

  • PV -> VG -> LV

  • pvcreate /dev/hda6 /dev/hda7 /dev/hda8

  • vgcreate vg0 /dev/hda6 /dev/hda7

  • lvcreate -L 500M -n data0 vg0

  • ext2online /dev/vg0/data0