Creating a LVM

Source: doc Ubuntu-fr - LVM

In this example we will create a LVM placed on 2 partitions: sda10 and sdb1
All the command are done with root permissions ⇒ su or sudo

  1. if not present, create (with fdisk od gparted or…) the both partitions.
    Be careful:all the data stored on these partition will be lost!
  2. create the both physical volumes:
    pvcreate /dev/sda10
    pvcreate /dev/sdb1 

    pvdisplay or pvscan to get info.

  3. create the volume group “vgBackupPC”:
    vgcreate vgBackupPC /dev/sda10 /dev/sdb1

    vgdisplay to get info.

  4. create the logical volume “lvBackupPC” on the entire space of the volume group:
    lvcreate -n lvBackupPC -l 100%FREE vgBackupPC

    lvdisplay to get info.
    -n is to give the name and -l to deal with the storage space ⇒ see the man for more details.

  5. create an ext4 file system on the logical volum:
    mkfs -t ext4 /dev/vgBackupPC/lvBackupPC 
  6. mounting the LVM
    • with the name of the LVM
      mount -t ext4 /dev/vgBackupPC/lvBackupPC /mount/point 
    • with the UUID
      This is a little bit tricky: the UUID to be used is NOT the UUID of the LV given by lvdisplay!
      For the mounting, we have to use the UUID of the file system:
      • getting the UUID of the file system:
        $ blkid
        /dev/sda1: UUID=....
        /dev/sda2: UUID=....
        /dev/sda3: UUID=....
        ....
        /dev/mapper/vgBackupPC-lvBackupPC: UUID="521489ca-ba67-49e9-a3c6-fa62b0eeeb2f" TYPE="ext4"
    • mounting:
      mount -t ext4 UUID=521489ca-ba67-49e9-a3c6-fa62b0eeeb2f /mount/point 

Removing a disk from a LVM

In this example we want to remove the disk (= the physical volume more exactly) dev/sdb1 from the LVM.

DokuWiki Appliance - Powered by TurnKey Linux