mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
11 lines
485 B
Bash
11 lines
485 B
Bash
|
# 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'
|