Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have built a VG named cinder-volumes. Within this VG, I created a PV named leader-volume. Then I mounted this PV as the root filesystem of a KVM Ubuntu installation. During the installation process, I selected LVM partition. At last, I created a snapshot for the PV leader-volume. Now I want to read some files within my Ubuntu installation... What shall I do?

share|improve this question

closed as off topic by Andrew Barber May 16 at 2:58

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

Take a look at kpartx - it's especially useful for managing VMs where entire file systems are often packed into single volumes. kpartx can create device nodes for partitions nested on a block device or disk image.

Mount (one of the following) :

kpartx -av your_vm_disk.img

kpartx -av /dev/mapper/your_device

Where your_device could be an lvm partition.

The -v option kpartx causes to display the devices it creates for nested partitions.

Mount the appropriate /dev/mapper/loopXpX:

mount /dev/mapper/loop0p1 /mnt

Unmount (after unmounting loop devices) :

umount -d /dev/mapper/loop0 , umount -d diskimage.img

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.