so you have luks encryption and lvm:
1. open the encryped container:
Code:
cryptsetup luksOpen /dev/sda2 sda2_crypt
2.rescan for lvm devices and activate all:
Code:
pvscan
vgscan
lvscan
vgchange -a y
3.mount the devices of our lvm:
Code:
mount /dev/cryptVG/root /media/aptosid
(I used the names for devies/partion of the wiki)
Maybe you want to extend the wiki page... |