Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Re-creating VGs & LVMs

...

No Format
# find
vgscan

# activate
vgchange -ay

# list 
lvdisplay
 
# mount something
mount /dev/volumegroup/logicalvolume /mountpoint

Re-creating VGs & LVMs on new disks

No Format
vgcreate vg1 /dev/sdaX
 
lvcreate -L 10G -n root vg1
 
mkfs /dev/vg1/root
 
mount ...