Walker News

How To Create Linux LVM In 3 Minutes

What’s LVM? Why using Linux Logical Volume Manager or LVM?

These questions are not the scope here. But in brief, the most attractive feature of Logical Volume Manager is to make disk management easier in Linux! Basically, LVM allows users to dynamically extend or shrink Linux “partition” or file system in online mode! The LVM can resize volume groups (VG) online by adding new physical volumes (PV) or rejecting those existing PVs attached to VG.

A visualized concept diagram of the Linux Logical Volume Manager or LVM.
A visualized concept diagram of the Linux Logical Volume Manager or LVM
In this 3-minutes Linux LVM guide, let’s assume that
  • The LVM is not currently configured or in used. Having say that, this is the LVM tutorial if you’re going to setup LVM from the ground up on a production Linux server with a new SATA / SCSI hard disk.
     
  • Without a luxury server hardware, I tested this LVM tutorial on PC with the secondary hard disk dedicated for LVM setup. So, the Linux dev file of secondary IDE hard disk will be /dev/hdb (or /dev/sdb for SCSI hard disk).
     
  • This guide is fully tested in Red Hat Enterprise Linux 4 with Logical Volume Manager 2 (LVM2) run-time environment (LVM version 2.00.31 2004-12-12, Library version 1.00.19-ioctl 2004-07-03, Driver version 4.1.0)!

How to setup Linux LVM in 3 minutes at command line?
  1. Login with root user ID and try to avoid using sudo command for simplicity reason.
     
  2. Using the whole secondary hard disk for LVM partition:
    fdisk /dev/hdb

    At the Linux fdisk command prompt,
    1. press n to create a new disk partition,
    2. press p to create a primary disk partition,
    3. press 1 to denote it as 1st disk partition,
    4. press ENTER twice to accept the default of 1st and last cylinder – to convert the whole secondary hard disk to a single disk partition,
    5. press t (will automatically select the only partition – partition 1) to change the default Linux partition type (0×83) to LVM partition type (0x8e),
    6. press L to list all the currently supported partition type,
    7. press 8e (as per the L listing) to change partition 1 to 8e, i.e. Linux LVM partition type,
    8. press p to display the secondary hard disk partition setup. Please take note that the first partition is denoted as /dev/hdb1 in Linux,
    9. press w to write the partition table and exit fdisk upon completion.

     
  3. Next, this LVM command will create a LVM physical volume (PV) on a regular hard disk or partition:
    pvcreate /dev/hdb1
     
  4. Now, another LVM command to create a LVM volume group (VG) called vg0 with a physical extent size (PE size) of 16MB:
    vgcreate -s 16M vg0 /dev/hdb1

    Be properly planning ahead of PE size before creating a volume group with vgcreate -s option!
     
  5. Create a 400MB logical volume (LV) called lvol0 on volume group vg0:
    lvcreate -L 400M -n lvol0 vg0

    This lvcreate command will create a softlink /dev/vg0/lvol0 point to a correspondence block device file called /dev/mapper/vg0-lvol0.
     
  6. The Linux LVM setup is almost done. Now is the time to format logical volume lvol0 to create a Red Hat Linux supported file system, i.e. EXT3 file system, with 1% reserved block count:
    mkfs -t ext3 -m 1 -v /dev/vg0/lvol0
     
  7. Create a mount point before mounting the new EXT3 file system:
    mkdir /mnt/vfs
     
  8. The last step of this LVM tutorial – mount the new EXT3 file system created on logical volume lvol0 of LVM to /mnt/vfs mount point:
    mount -t ext3 /dev/vg0/lvol0 /mnt/vfs

To confirm the LVM setup has been completed successfully, the df -h command should display these similar message:

/dev/mapper/vg0-lvol0 388M 11M 374M 3% /mnt/vfs

Some of the useful LVM commands reference:
vgdisplay vg0
 
To check or display volume group setting, such as physical size (PE Size), volume group name (VG name), maximum logical volumes (Max LV), maximum physical volume (Max PV), etc.
 
pvscan
 
To check or list all physical volumes (PV) created for volume group (VG) in the current system.
 
vgextend
 
To dynamically adding more physical volume (PV), i.e. through new hard disk or disk partition, to an existing volume group (VG) in online mode. You’ll have to manually execute vgextend after pvcreate command that create LVM physical volume (PV).


Custom Search

  1. How To Setup Linux VNC Server In 3 Minutes – Walker News July 5th, 2007 3:39 PM

    [...] the newbie (as myself), here is my another 3-minute Linux guide about How to setup VNC server in Red Hat Enterprise [...]

  2. How To Install Wordpress Blog In 3 Minutes – Walker News July 18th, 2007 4:17 PM

    [...] and PHP), I’m writing this 3-minutes WordPress setup guide for Red Hat Linux (my another 3-minutes setup guide [...]

  3. saan May 1st, 2009 1:01 PM

    thanks a lot. this is really useful and easy to understand.

  4. Bingo May 13th, 2009 1:04 AM

    You can actually skip to step 3 and use pvcreate against the entire disk, right?

    Each PhysicalVolume can be a disk partition, whole disk, meta device, or loopback file.

  5. Walker May 13th, 2009 9:26 AM

    You’re right.

  6. brianko July 12th, 2009 9:35 AM

    After calling vgextend to add another physical volume, I also had to call lvresize to expand the (new) lv to take advantage of the additional disk space.

  7. Mike October 31st, 2009 4:03 AM

    Thanks for this Walker- most of the tutorials on the web are just too wordy, this helped me get to where I needed to be, quickly.

  8. Walker November 1st, 2009 10:32 PM

    You’re welcome.

  9. Dick February 2nd, 2010 3:28 PM

    Please refer to

    http://www.voofie.com/content/13/converting-existing-root-filesystem-to-lvm-in-debian/

    if you wanted to change an existing root system to LVM in Debian. It is very detail, and all the steps needed are shown, and it works for me.

  10. rajkapoor February 17th, 2010 3:18 AM

    hai i am kapoor, i just want to logical volume manager theory information then how to work in real time.

  11. Fredflintstone February 24th, 2010 6:07 PM

    I have been looking everywhere for an easy solution to this problem ,and you sorted out this problem in less then 1 minute,
    thank you

  12. Ahmad Tallaa April 28th, 2010 2:06 AM

    Thanks a lot man. I really appreciate that .

    I will go to the club to celebrate

    Ahmad

  13. Bob April 29th, 2010 3:02 AM

    Thanks, Brother! This page is very helpful.

  14. Ricola May 16th, 2010 7:38 AM

    Is it possible to help me out with this ?

    I have Installed latest cent os 64 Bit with 24 GB ram and 4x HDD s 1x 1 TB.

    I need to do this:

    clearpart –all –drives=sda
    part /boot –fstype ext3 –size=128
    part pv.32 –size=12048 –asprimary
    volgroup VolGroup00 –pesize=32768 pv.32
    logvol / –fstype ext3 –name=LogVol00 –vgname=VolGroup00 –size=12032

    But i dont now how i spend alot of money and now i cannot use some software just because of this i dont now how to do it i need some help.

  15. Walker May 16th, 2010 3:21 PM

    Frankly speaking, I don’t really understand your problem. Sorry about that.

  16. Amit Kumar Pandey May 21st, 2010 6:56 PM

    Thanks for giving this resolution that we can sortout our problems

  17. Fatiha August 3rd, 2010 11:36 PM

    Thank you very much !!!