- List Available LVM Volume Groups
- pvs
- List what Logical Volumes exist inside the group
- lvdisplay vg1 (enter the VG listed from the VG column from pvs)
- Mount normally, ie:
- mount /dev/vg1/lv1 /mnt/disk
- However, if the block size is greater than 4KB, you'll need to use fuseext2, something like...
- fuseext2 -o ro -o sync_read /dev/vg1/lv1 /mnt/disk
Comments
Post a Comment