You are not logged in.
Pages: 1
Hi,
I would like encrypt /home (or other partition) after installation.
I have made some try with other partition, everything is ok but my passphrase is no ask on boot.
I have made this with a small partition :
cryptsetup -c aes-xts-plain -y -s 512 luksFormat /dev/sda6
cryptsetup luksOpen /dev/sda6 storage
mkfs.btrfs /dev/mapper/storage
mount /dev/mapper/storage /storage
so /storage is mount
A have add this on /etc/fstab :
/dev/mapper/storage /storage btrfs defaults,nodev,nosuid,noexec 0 1
and this on /etc/cryttab :
storage /dev/mapper/storage none
How could I do for my laptop ask me the passphrase for /storage during boot ?
Offline
you have to use the encrypted device itself in /etc/crypttab, not the mapped device ( /dev/mapper/storage -> /dev/sda6 ).
Offline
Pages: 1