Mapper is missing /dev/ in Whiite February 24, 2010 03:28AM | Registered: 15 years ago Posts: 35 |
You are seeing Failed to setup dm-crypt mapping. Failed to read from key storage dm-crypt does not work properly. 1. Check if you have a /dev/ tree, including /dev/mapper/control. ghanima:~$ ls -l /dev/mapper/control crw-r----- 1 root root 10, 63 Jan 1 1970 /dev/mapper/control (char device, major 10, minor 63)^ If it's missing, you probably lack a complete /dev tree, so copy it somewhere or use devfs. 2. Check if you have device mapper and dm-crypt included in the kernel. Run dmsetup targets If don't, see a line like "crypt v1.1.0" or the command fails, compile device mapper and the crypt target into your kernel. 3. Check if you have the cipher you want to use included in the kernel. Run cat /proc/crypto 4. If you are using <2.6.10, supply -c "aes-plain" on partition creation.
Re: Mapper is missing /dev/ in Whiite February 25, 2010 03:29PM | Registered: 15 years ago Posts: 35 |
Re: Mapper is missing /dev/ in Whiite February 25, 2010 05:54PM | Registered: 15 years ago Posts: 6 |