How to install Kanotix into an encrypted LVM-volume:
This is an example installation, you may alter the partitioning, names, sizes, etc. to your needs:
usually you need two partitions:
cryptsetup -c aes-xts-plain -s 512 luksFormat /dev/sdX2 cryptsetup luksOpen /dev/sdX2 lukslvm
pvcreate /dev/mapper/lukslvm vgcreate vgkanotix /dev/mapper/lukslvm lvcreate -L 1500M -n swap vgkanotix mkswap /dev/mapper/vgkanotix-swap lvcreate -l 100%FREE -n root vgkanotix mkfs.ext4 /dev/mapper/vgkanotix-root
Edit /etc/crypttab
look up the UUID of your crypto-partition using
blkid /dev/sdX2
and add it to /etc/crypttab:
echo lukslvm UUID=1234-YOUR-UUID-5678 none luks >> /etc/crypttab
Reboot after you finished the installation. You will be asked to enter your passphrase. Type it in and press Enter, that's it.