caker wrote:
There is a new enabled option in the 2.6.9-linode9 kernel, CONFIG_DM_CRYPT, which I assume allows you to do encryption through the new Device Manager (DM):
-Chris
Yes, this is correct.
I have tried it and it works.
The kernel configs that are required are:
CONFIG_BLK_DEV_DM (the device mapper)
CONFIG_DM_CRYPT (the crypto device mapper target)
2.6.9-linode9 is compiled with these options
You then need to install the userspace tool dmsetup (and cryptsetup for easier setup)
Then do the following:
cryptsetup create volume1 /dev/ubdf
mke2fs -j /dev/mapper/volume1
mount /dev/mapper/volume1 /mnt/crypto/
where udbf is a new empty linode disk image, volume1 is a name of your choice and /mnt/crypto a mount point of your choice