I'm trying to mount an LVM2 volume, but all the instructions I see online say to mount the Volume Group, such as 'mkdir -p /mnt/VolGroup00/LogVol00' but I don't know how to figure out the name of it. I see the drive in Palimpsest, and that's all the info I know. How do I do this?
|
feedback
|
|
Faced this problem a while ago, I'd posted this on my blog List out all your partitions, type
You will get a list of something like this
Make a note of Next, type lvdisplay to show a detailed list of all logical volumes available.
Now from the above set of data we can deduce that my Now that we know where the partition is available, we can proceed with the mounting using the mount command, as
And there you go, your LV partition is mounted! | |||
|
feedback
|
|
You can get a list of volume names by running
i.e. with the volume group names in the middle and logical volumes at the end. See if any of them correspond to the information in Palimpset. Also, compare to the list of disks already mounted (
You can see where the volume group and logical volume appear at the end. Once you've found the right one, mount it in the usual way:
| |||
|
feedback
|
