During boot process, I am asked a second time to enter a LUKS passphrase for a partition which I added later on in crypttab
and fstab
(later means after the first complete installation process).
Following are fragments from crypttab
:
luks-0b2e5609-b174-45aa-875c-727ae046ea13 UUID=0b2e5609-b174-45aa-875c-727ae046ea13 /crypto_keyfile.bin luks
luks-a9001606-80a3-47d8-bc48-e2a79a3a95be UUID=a9001606-80a3-47d8-bc48-e2a79a3a95be /crypto_keyfile.bin luks
luks-03e0680d-6510-4bda-a1c2-698e71e0448a UUID=03e0680d-6510-4bda-a1c2-698e71e0448a /crypto_keyfile.bin luks
luks-ed616353-6a2e-4003-93fe-13b7e931c04d UUID=ed616353-6a2e-4003-93fe-13b7e931c04d /crypto_keyfile.bin luks
and fstab
:
UUID=F577-4FE2 /boot/efi vfat noatime 0 2
/dev/mapper/luks-0b2e5609-b174-45aa-875c-727ae046ea13 swap swap defaults 0 0
dev/mapper/luks-a9001606-80a3-47d8-bc48-e2a79a3a95be / ext4 noatime 0 1
/dev/mapper/luks-03e0680d-6510-4bda-a1c2-698e71e0448a /home ext4 noatime 0 2
/dev/mapper/luks-ed616353-6a2e-4003-93fe-13b7e931c04d /software ext4 noatime 0 2
tmpfs /tmp tmpfs noatime,mode=1777 0 0
Entering before boot the passphrase, goes all the way up until mounting /software
. The passphrase is asked again. I have added this partition later on, after the installation process in which I defined all encrypted partitions manually (using Calamares). I decided to change the filesystem type for /software
thus I needed to set it up again from the scratch to be an ecrypted partition.
Why is the passphrase asked again even if it is the same? Do I need to do something in the initramfs?