Hello,
If your /etc/lvm/backup/ was created with vgcfgbackup command, you can try to do this:
First find out the old UID’s of the partitions, this is in your /etc/lvm/backup/system file, and make sure you get the UID for the physical volumes.
Where system is a name of your volume group.
You can do it with simple commad: pvcreate –restorefile /etc/lvm/backup/system
And recreate partitions, for example:
# pvcreate -u sdSD-2343-SD939-adIda2 /dev/hda6
# vcreate -u dk33kd-929293nd-adfja298a /dev/hdd1
# vgcreate -v system /dev/hda7 /dev/hdd1
# vgcfgrestore -f /etc/lvm/backup/system system
and voila !
