Estou tentando configurar um disco criptografado usando LUKS em um RAID de software que foi configurado usando mdadm
14.04.1 LTS (GNU/Linux 3.8.13.26 armv7l) (Odroid U3).
O problema é que o contêiner LUKS não é desbloqueado automaticamente na inicialização e não tenho ideia de por que ou onde procurar problemas.
Problema
O software RAID está funcionando bem se eu formatá-lo ext4
e colocá-lo no fstab para montagem automática. Além disso, se eu usar o LUKS separadamente (sem RAID, apenas no /dev/sda1
) ele funciona sem problemas e o dispositivo aparece /dev/mapper
quando configurado no /etc/crypttab
.
O problema aparece ao combinar os dois. O dispositivo RAID aparece como, /dev/md0
mas o contêiner LUKS não é montado automaticamente no arquivo /dev/mapper/crypt
. Por outro lado, o uso sudo cryptdisks_start crypt
após a inicialização funciona sem problemas. Além disso, corri sudo update-initramfs -u -k all
depois de configurar /etc/crypttab
(veja o resultado abaixo).
mdadm
sudo cat /proc/mdstat
fornece a seguinte saída:
Personalities : [raid1]
md0 : active raid1 sdb1[1] sda1[0]
976596800 blocks super 1.2 [2/2] [UU]
[>....................] resync = 0.6% (6345024/976596800) finish=1342.7min speed=12042K/sec
unused devices: <none>
E /etc/mdadm/mdadm.conf
tem a seguinte linha:
ARRAY /dev/md/0 metadata=1.2 UUID=f2c7b09f:71620ae5:7b6ec321:e9ce02cc name=odroid:0
cripttab
# <target name> <source device> <key file> <options>
usb-crypt /dev/md0 None luks,keyscript=/home/user/key.sh
registro de sistema
Oct 22 06:34:40 odroid kernel: [ 9.283025] md: bind<sda1>
Oct 22 06:34:40 odroid kernel: [ 9.302273] md: raid1 personality registered for level 1
Oct 22 06:34:40 odroid kernel: [ 9.302817] md/raid1:md0: not clean -- starting background reconstruction
Oct 22 06:34:40 odroid kernel: [ 9.302826] md/raid1:md0: active with 2 out of 2 mirrors
Oct 22 06:34:40 odroid kernel: [ 9.302878] md0: detected capacity change from 0 to 1000035123200
Oct 22 06:34:40 odroid kernel: [ 9.305140] md: resync of RAID array md0
Oct 22 06:34:40 odroid kernel: [ 9.305149] md: minimum _guaranteed_ speed: 1000 KB/sec/disk.
Oct 22 06:34:40 odroid kernel: [ 9.305153] md: using maximum available idle IO bandwidth (but not more than 200000 KB/sec) for resync.
Oct 22 06:34:40 odroid kernel: [ 9.305162] md: using 128k window, over a total of 976596800k.
Oct 22 06:34:40 odroid kernel: [ 9.305166] md: resuming resync of md0 from checkpoint.
Oct 22 06:34:41 odroid kernel: [ 9.499399] md0: unknown partition table
atualização-initramfs
sudo update-initramfs -u -k all
:
update-initramfs: Generating /boot/initrd.img-3.8.13.26
update-initramfs: Generating /boot/initrd.img-3.8.13.23
WARNING: missing /lib/modules/3.8.13.23
Device driver support needs thus be built-in linux image!
depmod: ERROR: could not open directory /lib/modules/3.8.13.23: No such file or directory
depmod: FATAL: could not search modules: No such file or directory
depmod: WARNING: could not open /tmp/mkinitramfs_PDBSh1/lib/modules/3.8.13.23/modules.order: No such file or directory
depmod: WARNING: could not open /tmp/mkinitramfs_PDBSh1/lib/modules/3.8.13.23/modules.builtin: No such file or directory
update-initramfs: Generating /boot/initrd.img-3.8.13.18
grep: /boot/config-3.8.13.18: No such file or directory
WARNING: missing /lib/modules/3.8.13.18
Device driver support needs thus be built-in linux image!
depmod: ERROR: could not open directory /lib/modules/3.8.13.18: No such file or directory
depmod: FATAL: could not search modules: No such file or directory
depmod: WARNING: could not open /tmp/mkinitramfs_r2PYwd/lib/modules/3.8.13.18/modules.order: No such file or directory
depmod: WARNING: could not open /tmp/mkinitramfs_r2PYwd/lib/modules/3.8.13.18/modules.builtin: No such file or directory
Pelo que entendi, isso está tudo bem.