Difference between revisions of "LVM"
From Nuclear Physics Group Documentation Pages
Jump to navigationJump to searchm |
m (→Mounting) |
||
| Line 2: | Line 2: | ||
==Mounting== | ==Mounting== | ||
To mount lvm partitions from a livecd (for purposes of recovery/emergency maintenance), simply: | To mount lvm partitions from a livecd (for purposes of recovery/emergency maintenance), simply: | ||
| − | <code>modprobe dm-mod</code> to load required modules | + | # <code>modprobe dm-mod</code> to load required modules |
| + | # <code>lvm vgchange -ay</code> to become aware of the volume groups | ||
| + | # mount as normal with <code> mount /dev/vg_(machine-name)/(distro-name) /location/to/mount/to</code>. | ||
Revision as of 14:34, 28 June 2007
Logical Volume Management is used to treat seperate disks as one. However, this can cause trouble when trying to access the disks from a recovery CD, etc.
Mounting
To mount lvm partitions from a livecd (for purposes of recovery/emergency maintenance), simply:
modprobe dm-modto load required moduleslvm vgchange -ayto become aware of the volume groups- mount as normal with
mount /dev/vg_(machine-name)/(distro-name) /location/to/mount/to.