Difference between revisions of "LVM"
From Blue-IT.org Wiki
(→Mount existing volume groups) |
(→Mount existing volume groups) |
||
Line 15: | Line 15: | ||
sudo vgchange -a y | sudo vgchange -a y | ||
+ | > 2 logical volume(s) in volume group "vg-whatever" now active | ||
+ | |||
+ | ls /dev/mapper | ||
+ | > control vg--whatever--root vg--whatever--swap | ||
+ | |||
+ | cd /mnt | ||
+ | mkdir my_root | ||
+ | mount /dev/mapper/vg--whatever--root my_root | ||
== Umount existing volume groups and close encrypted container == | == Umount existing volume groups and close encrypted container == |
Revision as of 06:36, 18 September 2015
Contents
Install necessary apps
E.g. on a rescue disc ...
apt-get install cryptsetup
Open encryted lvm partition
cryptsetup luksOpen /dev/sda5 my-crypt
Mount existing volume groups
sudo apt-get install lvm2 sudo modprobe dm-mod
sudo vgchange -a y > 2 logical volume(s) in volume group "vg-whatever" now active
ls /dev/mapper > control vg--whatever--root vg--whatever--swap
cd /mnt mkdir my_root mount /dev/mapper/vg--whatever--root my_root
Umount existing volume groups and close encrypted container
sudo umount /dev/mapper/whatever sudo vgchange -a n sudo cryptsetup luksClose my-crypt