
# cryptsetup luksFormat /dev/vda6
# mkfs.ext4 /dev/mapper/cryptVL
/dev/mapper/cryptVL /mntVL ext4 defaults 1 2
< name _of_the_block_device > < path/to/the/actual/device > < password | none > [ list of options ]
cryptVL /dev/vda6 none
# dd if=/dev/random of=/root/luks.key bs=32 count=1
# mount -w -o remount /to actually remount the root file-system in read-write mode. Now you will be able to comment out/delete the line from the /etc/fstab and the system will boot normally.