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?
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.
|
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) :
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:
Unmount (after unmounting loop devices) :
|
|||
|
|