Instructions for mounting Linux LVM volumes with a live CD. I’ve used a Gentoo minimal install/Live CD.





…boot the Live CD and open a terminal.

Mounting the LVM Volume:

1
2
3
vgchange -a y
lvscan
mount -t ext3 /dev/VolGroup00/LogVol00 /mnt/

Unmounting the LVM Volume:

1
2
umount /mnt/
vgchange -a y

Comments