2022-10-26 14:02:14 +08:00
|
|
|
# SPDX-License-Identifier: MIT-0
|
2021-10-01 18:44:33 +08:00
|
|
|
|
2020-12-08 00:18:52 +08:00
|
|
|
# Enroll the security token in the LUKS2 volume. Replace /dev/sdXn by the
|
|
|
|
# partition to use (e.g. /dev/sda1).
|
|
|
|
sudo systemd-cryptenroll --fido2-device=auto /dev/sdXn
|
|
|
|
|
|
|
|
# Test: Let's run systemd-cryptsetup to test if this worked.
|
2023-09-23 00:47:05 +08:00
|
|
|
sudo systemd-cryptsetup attach mytest /dev/sdXn - fido2-device=auto
|
2020-12-08 00:18:52 +08:00
|
|
|
|
|
|
|
# If that worked, let's now add the same line persistently to /etc/crypttab,
|
2023-09-23 00:27:10 +08:00
|
|
|
# for the future. We don't want to use the (unstable) /dev/sdX name, so let's
|
|
|
|
# figure out a stable link:
|
|
|
|
udevadm info -q -r symlink /dev/sdXn
|
2023-09-22 05:52:04 +08:00
|
|
|
|
2023-09-23 00:27:10 +08:00
|
|
|
# Now add the line using the by-uuid symlink to /etc/crypttab:
|
|
|
|
sudo bash -c 'echo "mytest /dev/disk/by-uuid/... - fido2-device=auto" >>/etc/crypttab'
|
|
|
|
|
|
|
|
# Depending on your distribution and encryption setup, you may need to manually
|
|
|
|
# regenerate your initramfs to be able to use a FIDO2 device to unlock the
|
|
|
|
# partition during early boot.
|
|
|
|
# More information at https://unix.stackexchange.com/a/705809.
|
2023-09-22 05:52:04 +08:00
|
|
|
# On Fedora based systems:
|
|
|
|
sudo dracut --force
|
|
|
|
# On Debian based systems:
|
|
|
|
sudo update-initramfs -u
|