1
0
mirror of https://github.com/systemd/systemd.git synced 2024-12-22 17:35:35 +03:00
systemd/man/fido2-crypttab.sh

22 lines
866 B
Bash
Raw Normal View History

# SPDX-License-Identifier: MIT-0
2020-12-07 19:18:52 +03: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.
sudo /usr/lib/systemd/systemd-cryptsetup attach mytest /dev/sdXn - fido2-device=auto
# If that worked, let's now add the same line persistently to /etc/crypttab,
# for the future.
sudo bash -c 'echo "mytest /dev/sdXn - 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
# On Fedora based systems:
sudo dracut --force
# On Debian based systems:
sudo update-initramfs -u